From: hickert Date: Thu, 28 Jul 2005 09:38:03 +0000 (+0000) Subject: Added tooltips and fixed some copy&paste strings with wrong description X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=891ece5cb01237468c08c0ef2ce0db56fa3fc0e3;p=gosa.git Added tooltips and fixed some copy&paste strings with wrong description git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1024 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_systemManagement.inc b/plugins/admin/systems/class_systemManagement.inc index 723c26c10..e34d4802b 100644 --- a/plugins/admin/systems/class_systemManagement.inc +++ b/plugins/admin/systems/class_systemManagement.inc @@ -535,7 +535,7 @@ class systems extends plugin "  ". "  ". "  ". - "  ". + "  ". "  ". _("Current base")." ". "  ". @@ -543,8 +543,8 @@ class systems extends plugin - $action= ""; - $action.= ""; + $action= ""; + $action.= ""; $divlist = new divlist(); @@ -554,7 +554,7 @@ class systems extends plugin array("string" => _("Actions"), "attach" => "style='border:none'" ))); - $divlist->SetSummary(_("This table displays all users, in the selected tree.")); + $divlist->SetSummary(_("This table displays all systems, in the selected tree.")); $divlist->SetEntriesPerPage(20); // Defining Links @@ -657,25 +657,24 @@ class systems extends plugin function convert_list($input) { $temp= ""; - $conv= array( "D" => "select_default.png", - - - "T" => "select_terminal.png", - "L" => "select_workstation.png", - "F" => "select_phone.png", - "S" => "select_server.png", - "NT" => "select_new_terminal.png", - "NL" => "select_new_workstation.png", - "W" => "select_winstation.png", - "C" => "select_component.png", - "P" => "select_printer.png"); + $conv= array( + "D" => array("select_default.png",_("Template")), + "T" => array("select_terminal.png",_("Terminal")), + "L" => array("select_workstation.png",_("Workstation")), + "F" => array("select_phone.png",_("Phone")), + "S" => array("select_server.png",_("Server")), + "NT"=> array("select_new_terminal.png",_("New Terminal")), + "NL"=> array("select_new_workstation.png",_("New Workstation")), + "W" => array("select_winstation.png",_("Winstation")), + "C" => array("select_component.png",_("Network Device")), + "P" => array("select_printer.png",_("Printer"))); if((isset($input['is_new']))&&(!empty($input['is_new']))){ $input['type']="N".$input['type']; } foreach ($conv as $key => $value){ if($input['type']==$key){ - $tmp['img'] ="".$key.""; + $tmp['img'] ="".$key.""; $tmp['class']=$key; return $tmp; }