Code

Added branches container for old stuff
[gosa.git] / gosa-core / include / utils / class_msgPool.inc
index 3c14c4eb20fb91293cafad351e3f997960dc7535..d77eeb82803d95afd2a4240a4239d7dac7b67c41 100644 (file)
@@ -8,34 +8,52 @@ define ("LDAP_AUTH",   6);
 
 class msgPool
 {
+
+  public static function selectToView($type,$o_type = "")
+  {
+    if($o_type == ""){
+      return(sprintf(_("Select to list objects of type '%s'."),$type));
+    }elseif($o_type == "contains"){
+      return(sprintf(_("Select to list objects containig '%s'."),$type));
+    }elseif($o_type == "enabled"){
+      return(sprintf(_("Select to list objects that have '%s' enabled"),$type));
+    }elseif($o_type == "subsearch"){
+      return(_("Select to search within subtrees"));
+    }elseif($o_type == "subsearch_small"){
+      return(_("Search in subtrees"));
+    }
+
+  }
+
+
   public static function deleteInfo($name= "",$type = "")
   {
     if ($name == "") { 
-               if($type == ""){
-                       return (_("You are going to delete this object!"));
-               }else{
-                       return (sprintf(_("You are going to delete this '%s' object!"),$type));
-               }
-    }
-       if (!is_array($name)){
-               if($type == ""){
-                       return (_("You are going to delete this object:")."<br><br><i>$name</i>");
-               }else{
-                       return (sprintf(_("You are going to delete the '%s' object:"),$type)."<br><br><i>$name</i>");
-               }
+      if($type == ""){
+        return (_("This object will be deleted!"));
+      }else{
+        return (sprintf(_("This '%s' object will be deleted!"), $type));
+      }
+    }
+    if (!is_array($name)){
+      if($type == ""){
+        return (sprintf(_("This object will be deleted: %s"), "<br><br><i>$name</i>"));
+      }else{
+        return (sprintf(_("This '%s' object will be deleted: %s"),$type, "<br><br><i>$name</i>"));
+      }
     }
     if (count($name) == 1){
-               if($type == ""){
-                       return (_("You are going to delete this object:")."<br>".msgPool::buildList($name));
-               }else{
-                       return (sprintf(_("You are going to delete the '%s' object:"),$type)."<br>".msgPool::buildList($name));
-               }
+      if($type == ""){
+        return (_("This object will be deleted:")."<br>".msgPool::buildList($name)."<br><br>");
+      }else{
+        return (sprintf(_("This '%s' object will be deleted:"),$type). "<br>".msgPool::buildList($name)."<br><br>");
+      }
+    }
+    if($type == ""){
+      return (sprintf(_("These objects will be deleted: %s"), "<br>".msgPool::buildList($name)."<br><br>"));
+    }else{
+      return (sprintf(_("These '%s' objects will be deleted: %s"),$type, "<br>".msgPool::buildList($name)."<br><br>"));
     }
-       if($type == ""){
-               return (_("You are going to delete these objects:")."<br>".msgPool::buildList($name));
-       }else{
-               return (sprintf(_("You are going to delete these '%s' objects:"),$type)."<br>".msgPool::buildList($name));
-       }
   }
 
 
@@ -49,7 +67,6 @@ class msgPool
       return (_("You have no permission to delete the object:")."<br><br><i>$name</i>");
     }
 
-    msgPool::buildList($name);
     if (count($name) == 1){
       return (_("You have no permission to delete the object:")."<br>".msgPool::buildList($name));
     }
@@ -184,6 +201,34 @@ class msgPool
   }
 
 
+  public static function cmdinvalid($type, $command = "",$plugin="")
+  {
+    if(empty($command)){
+      return (sprintf(_("'%s' command is invalid!"), $type));
+    }elseif($command != "" && $plugin != ""){
+      return (sprintf(_("'%s' command (%s) for plugin %s is invalid!"), $type,$command,$plugin));
+    }elseif($plugin != "" && $command =""){
+      return (sprintf(_("'%s' command for plugin %s is invalid!"), $type,$plugin));
+    }else{
+      return (sprintf(_("'%s' command (%s) is invalid!"), $type,$command));
+    }
+  }
+
+
+  public static function cmdexecfailed($type, $command = "",$plugin="")
+  {
+    if(empty($command)){
+      return (sprintf(_("Cannot execute '%s' command!"), $type));
+    }elseif($command != "" && $plugin != ""){
+      return (sprintf(_("Cannot execute '%s' command (%s) for plugin %s!"), $type,$command,$plugin));
+    }elseif($plugin != "" && $command =""){
+      return (sprintf(_("Cannot execute '%s' command for plugin %s!"), $type,$plugin));
+    }else{
+      return (sprintf(_("Cannot execute '%s' command (%s)!"), $type,$command));
+    }
+  }
+
+
   public static function toobig($name, $min= "")
   {
     if ($min == ""){
@@ -244,10 +289,10 @@ class msgPool
       }
 
       return sprintf(_("The Field '%s' contains invalid characters"), $name).". ".
-             (strlen($mismatch)==1?sprintf(_("'%s' is not allowed:"), htmlentities($mismatch)):sprintf(_("'%s' are not allowed."), htmlentities($mismatch))).
-             "<br><br> \"$result\"$example";
+        (strlen($mismatch)==1?sprintf(_("'%s' is not allowed:"), htmlentities($mismatch)):sprintf(_("'%s' are not allowed!"), htmlentities($mismatch))).
+        "<br><br> \"$result\"$example";
     } else {
-      return sprintf(_("The Field '%s' contains invalid characters"), $name)."!$example";
+      return sprintf(_("The Field '%s' contains invalid characters!"), $name)."!$example";
     }
   }
 
@@ -308,7 +353,7 @@ class msgPool
 
   public static function backButton($what= "")
   {
-    return $what == "" ? sprintf(_("Back...")): sprintf(_("Back %s..."), $what);
+    return _("Back");
   }
 
 
@@ -322,104 +367,197 @@ class msgPool
         $objects.= "<br>\n$value (<i>$key</i>)";
       }
     }
+    return($objects);
   }
 
   public static function noValidExtension($name)
   {
-       return sprintf(_("This account has no valid %s extensions!"), $name);
+    return sprintf(_("This account has no valid %s extensions!"), $name);
   }
 
   public static function featuresEnabled($name, $depends= "")
   {
-       if ($depends == ""){
-               return sprintf(_("This account has %s settings enabled. You can disable them by clicking below."), $name);
-       } else {
-               if (count($depends) == 1){
-                       return sprintf(_("This account has %s settings enabled. To disable them, you'll need to remove the %s settings first!"), $name, $depends);
-               } else {
-                       $deps= "";
-                       foreach ($depends as $dep){
-                               $deps.= "$dep / ";
-                       }
-                       $deps= preg_replace("/ \/ $/", "", $deps);
-                       return sprintf(_("This account has %s settings enabled. To disable them, you'll need to remove the %s settings first!"), $name, $deps);
-               }
-       }
+    if ($depends == ""){
+      return sprintf(_("This account has %s settings enabled. You can disable them by clicking below."), $name);
+    } else {
+      if (count($depends) == 1){
+        return sprintf(_("This account has %s settings enabled. To disable them, you'll need to remove the %s settings first!"), $name, $depends);
+      } else {
+        $deps= "";
+        foreach ($depends as $dep){
+          $deps.= "$dep / ";
+        }
+        $deps= preg_replace("/ \/ $/", "", $deps);
+        return sprintf(_("This account has %s settings enabled. To disable them, you'll need to remove the %s settings first!"), $name, $deps);
+      }
+    }
   }
 
 
   public static function featuresDisabled($name, $depends= "")
   {
-       if ($depends == ""){
-               return sprintf(_("This account has %s settings disabled. You can enable them by clicking below."), $name);
-       } else {
-               if (count($depends) == 1){
-                       return sprintf(_("This account has %s settings disabled. To enable them, you'll need to add the %s settings first!"), $name, $depends);
-               } else {
-                       $deps= "";
-                       foreach ($depends as $dep){
-                               $deps.= "$dep / ";
-                       }
-                       $deps= preg_replace("/ \/ $/", "", $deps);
-                       return sprintf(_("This account has %s features settings. To disable them, you'll need to add the %s settings first!"), $name, $deps);
-               }
-       }
+    if ($depends == ""){
+      return sprintf(_("This account has %s settings disabled. You can enable them by clicking below."), $name);
+    } else {
+      if (count($depends) == 1){
+        return sprintf(_("This account has %s settings disabled. To enable them, you'll need to add the %s settings first!"), $name, $depends);
+      } else {
+        $deps= "";
+        foreach ($depends as $dep){
+          $deps.= "$dep / ";
+        }
+        $deps= preg_replace("/ \/ $/", "", $deps);
+        return sprintf(_("This account has %s features settings. To disable them, you'll need to add the %s settings first!"), $name, $deps);
+      }
+    }
   }
 
 
   public static function addFeaturesButton($name)
   {
-       return sprintf(_("Add %s settings"), $name);
+    return sprintf(_("Add %s settings"), $name);
   }
 
 
   public static function removeFeaturesButton($name)
   {
-       return sprintf(_("Remove %s settings"), $name);
+    return sprintf(_("Remove %s settings"), $name);
   }
 
 
   public static function clickEditToChange()
   {
-       return _("Click the 'Edit' button below to change informations in this dialog");
+    return _("Click the 'Edit' button below to change informations in this dialog");
   }
 
 
   public static function months()
   {
-       return array(_("January"), _("February"), _("March"), _("April"),
-                       _("May"), _("June"), _("July"), _("August"), _("September"),
-                       _("October"), _("November"), _("December"));
+    return array(_("January"), _("February"), _("March"), _("April"),
+        _("May"), _("June"), _("July"), _("August"), _("September"),
+        _("October"), _("November"), _("December"));
   }
 
 
   public static function weekdays()
   {
-       return array( _("Sunday"), _("Monday"), _("Tuesday"), _("Wednesday"), _("Thursday"), _("Friday"), _("Saturday"));
+    return array( _("Sunday"), _("Monday"), _("Tuesday"), _("Wednesday"), _("Thursday"), _("Friday"), _("Saturday"));
   }
 
 
   public static function ldaperror($error, $dn= "", $type= 0, $plugin= "")
   {
-       /* Assign headline depending on type */
-       $typemap= array(1 => _("read operation"), _("add operation"), _("modify operation"),
-                            _("delete operation"), _("search operation"), _("authentication"));
-       
-       if (isset($typemap[$type])){
-               $headline= sprintf(_("LDAP %s failed!"), $typemap[$type]);
-       } else {
-               $headline= _("LDAP operation failed!");
-       }
+    /* Assign headline depending on type */
+    $typemap= array(1 => _("read operation"), _("add operation"), _("modify operation"),
+        _("delete operation"), _("search operation"), _("authentication"));
+
+    if (isset($typemap[$type])){
+      $headline= sprintf(_("LDAP %s failed!"), $typemap[$type]);
+    } else {
+      $headline= _("LDAP operation failed!");
+    }
 
-       /* Fill DN information */
-       if ($dn != ""){
-               $dn_info= "<br><br><i>"._("Object").":</i> ".LDAP::fix($dn);
-       }
+    /* Fill DN information */
+    if ($dn != ""){
+      $dn_info= "<br><br><i>"._("Object").":</i> ".LDAP::fix($dn);
+    }
 
-       return $headline.$dn_info."<br><br><i>"._("Error").":</i> ".$error;
+    return $headline.$dn_info."<br><br><i>"._("Error").":</i> ".$error;
   }
 
 
-}
+  public static function incorrectUpload($reason= "")
+  {
+    if ($reason == ""){
+      return _("Upload failed!");
+    }
+
+    return sprintf(_("Upload failed: %s"), "<br><br><i>$reason</i>");
+  }
+
+
+  public static function siError($error= "")
+  {
+    if ($error == ""){
+      return _("Communication failure with the infrastructure service!");
+    }
+    return sprintf(_("Communication failure with the infrastructure service: %s"), "<br><br>"._("Error").": ".$error);
+  }
+
 
+  public static function stillInUse($type, $objects= array())
+  {
+    if (!is_array($objects)){
+      return sprintf(_("This '%s' is still in use by this object: %s"), $type, "<br><br>".$objects);
+    }
+    if (count($objects) == 1){
+      return sprintf(_("This '%s' is still in use by this object: %s"), $type, "<br><br>".msgPool::buildList($objects));
+    }
+    if (count($objects) == 0){
+      return sprintf(_("This '%s' is still in use."), $type);
+    }
+    return sprintf(_("This '%s' is still in use by these objects: %s"), $type, "<br><br>".msgPool::buildList($objects));
+  }
+
+
+  public static function fileDoesNotExist($file)
+  {
+    return sprintf(_("File '%s' does not exist!"), $file);
+  }
+
+
+  public static function cannotReadFile($file)
+  {
+    return sprintf(_("Cannot open file '%s' for reading!"), $file);
+  }
+
+
+  public static function cannotWriteFile($file)
+  {
+    return sprintf(_("Cannot open file '%s' for writing!"), $file);
+  }
+
+
+  public static function invalidConfigurationAttribute($attr)
+  {
+    return sprintf(_("The value for '%s' is currently unconfigured or invalid, please check your configuration file!"), $attr);
+  }
+
+
+  public static function cannotDeleteFile($file)
+  {
+    return sprintf(_("Cannot delete file '%s'!"), $file);
+  }
+
+
+  public static function cannotCreateFolder($path)
+  {
+    return sprintf(_("Cannot create folder '%s'!"), $path);
+  }
+
+
+  public static function cannotDeleteFolder($path)
+  {
+    return sprintf(_("Cannot delete folder '%s'!"), $path);
+  }
+
+
+  public static function checkingFor($what)
+  {
+    return sprintf(_("Checking for %s support"), $what);
+  }
+
+
+  public static function installPhpModule($what)
+  {
+    return sprintf(_("Install and activate the %s PHP module."), $what);
+  }
+
+
+  public static function class_not_found($plugin)
+  {
+    return (sprintf(_("Cannot initialize class '%s'! Maybe there is a plugin missing in your gosa setup?"), $plugin));
+  }
+}
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>