Code

Moved folder icon
[gosa.git] / gosa-core / plugins / admin / ogroups / class_divListOGroup.inc
index 37be8ef4f8abe9cd3d29c57af8a80d2f764e75d5..db7bae3f116882826a644680a13a515982d216f7 100644 (file)
@@ -85,35 +85,34 @@ class divListOGroup extends MultiSelectWindow
     $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
 
     /*                  Text        ,Value    ,Name         ,Is selected */
-    $str1 = _("Select to see groups containing '%s'.");
-    $str2 = _("Show groups containing '%s'");
-    $this->AddCheckBox("UserGroups" ,       sprintf($str1,  _("Users")), 
-                                            sprintf($str2,  _("Users")), true);
-    $this->AddCheckBox("GroupGroups" ,      sprintf($str1,  _("Groups")),
-                                            sprintf($str2,  _("Groups")), true);
-    $this->AddCheckBox("ApplicationGroups", sprintf($str1,  _("Applications")),
-                                            sprintf($str2,  _("Applications")), true);
-    $this->AddCheckBox("DepartmentGroups" , sprintf($str1,  _("Departments")),
-                                            sprintf($str2,  _("Departments")), true);
-    $this->AddCheckBox("ServerGroups" ,     sprintf($str1,  _("Server")),
-                                            sprintf($str2,  _("Server")), true);
-    $this->AddCheckBox("WorkstationGroups", sprintf($str1,  _("Workstations")),
-                                            sprintf($str2,  _("Workstations")), true);
-    $this->AddCheckBox("WindowsGroups",     sprintf($str1,  _("Windows workstations")),
-                                            sprintf($str2,  _("Windows workstations")), true);
-    $this->AddCheckBox("TerminalGroups" ,   sprintf($str1,  _("Terminals")),
-                                            sprintf($str2,  _("Terminals")), true);
-    $this->AddCheckBox("PrinterGroups" ,    sprintf($str1,  _("Printer")),
-                                            sprintf($str2,  _("Printer")), true);
-    $this->AddCheckBox("PhoneGroups" ,      sprintf($str1,  _("Phones")),
-                                            sprintf($str2,  _("Phones")), true);
+    $str2 = _("Show %s");
+    $this->AddCheckBox("UserGroups" ,       sprintf($str2,  _("user groups")), 
+                                            sprintf($str2,  _("user groups")), true);
+    $this->AddCheckBox("GroupGroups" ,      sprintf($str2,  _("nested groups")),
+                                            sprintf($str2,  _("nested groups")), true);
+    $this->AddCheckBox("ApplicationGroups", sprintf($str2,  _("application groups")),
+                                            sprintf($str2,  _("application groups")), true);
+    $this->AddCheckBox("DepartmentGroups" , sprintf($str2,  _("department groups")),
+                                            sprintf($str2,  _("department groups")), true);
+    $this->AddCheckBox("ServerGroups" ,     sprintf($str2,  _("server groups")),
+                                            sprintf($str2,  _("server groups")), true);
+    $this->AddCheckBox("WorkstationGroups", sprintf($str2,  _("workstation groups")),
+                                            sprintf($str2,  _("workstation groups")), true);
+    $this->AddCheckBox("WindowsGroups",     sprintf($str2,  _("windows workstation groups")),
+                                            sprintf($str2,  _("windows workstation groups")), true);
+    $this->AddCheckBox("TerminalGroups" ,   sprintf($str2,  _("terminal groups")),
+                                            sprintf($str2,  _("terminal groups")), true);
+    $this->AddCheckBox("PrinterGroups" ,    sprintf($str2,  _("printer groups")),
+                                            sprintf($str2,  _("printer groups")), true);
+    $this->AddCheckBox("PhoneGroups" ,      sprintf($str2,  _("phone groups")),
+                                            sprintf($str2,  _("phone groups")), true);
 
     /* Add SubSearch checkbox */    
     $this->AddCheckBox(SEPERATOR);
-    $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
+    $this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
 
     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
-    $this->AddRegex   ("Regex",     _("Regular expression for matching group names"), "*" , true);
+    $this->AddRegex   ("Regex", _("Regular expression for matching group names"), "*" , true);
   }
 
 
@@ -212,7 +211,7 @@ class divListOGroup extends MultiSelectWindow
 #    $s.= "..|<img src='images/edit.png' alt='' border='0' class='center'>".
 #      "&nbsp;"._("Edit")."|"."multiple_edit|\n";
 
-    $s.= "..|<img src='images/edittrash.png' alt='' border='0' class='center'>".
+    $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
       "&nbsp;"._("Remove")."|"."remove_multiple_ogroups/|\n";
 
     /* Add event tag */
@@ -229,16 +228,16 @@ class divListOGroup extends MultiSelectWindow
     /* Add multiple copy & cut icons */
     if(is_object($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
       $s.= "..|---|\n";
-      $s.= "..|<img src='images/editcopy.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
-      $s.= "..|<img src='images/editcut.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
 
       if($this->parent->CopyPasteHandler->entries_queued()){
-        $img = "<img border='0' class='center' src='images/editpaste.png' alt=''>";
+        $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
         $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
       }else{
-        $img = "<img border='0' class='center' src='images/cant_editpaste.png' alt=''>";
+        $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
         $s.="..|".$img."&nbsp;"._("Paste")."\n";
       }
     }
@@ -286,9 +285,9 @@ class divListOGroup extends MultiSelectWindow
       $acl_all= $ui->has_complete_category_acls($val['dn'],"ogroups");
       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
         $actions.= "<input class='center' type='image'
-          src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
+          src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
         $actions.= "<input class='center' type='image'
-          src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
+          src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
       }
 
       $actions.= "<input class='center' type='image'
@@ -300,7 +299,7 @@ class divListOGroup extends MultiSelectWindow
 
       if(preg_match("/d/",$ui->get_permissions($val['dn'],"ogroups/ogroup"))) {
         $actions.= "<input class='center' type='image'
-          src='images/edittrash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
+          src='images/lists/trash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
       }else{
         $actions.= "<img class='center' src='images/empty.png' alt='&nbsp;'
           title='".msgPool::permDelete()."'>";
@@ -354,7 +353,7 @@ class divListOGroup extends MultiSelectWindow
 
     $str = "<img class='center' src='images/select_ogroup.png'
               title='".$num_obj_str."' alt='".$num_obj_str."'>&nbsp;".$num_objs."&nbsp;&nbsp;&nbsp;&nbsp;";
-    $str.= "<img class='center' src='images/folder.png'
+    $str.= "<img class='center' src='images/lists/folder.png'
               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
 
     $this->set_List_Bottom_Info($str);