Code

Fix encoding of base
[gosa.git] / gosa-core / include / utils / class_msgPool.inc
index f69d7edede3e31d70546b574bde119b78cb870be..5309dfa54687a5d4011496613074ca8443b05300 100644 (file)
@@ -46,7 +46,7 @@ class msgPool
       if($type == ""){
         return (_("This object will be deleted:")."<br>".msgPool::buildList($name));
       }else{
-        return (sprintf(_("This '%s' object will be deleted:"),$type, "<br>".msgPool::buildList($name)));
+        return (sprintf(_("This '%s' object will be deleted:"),$type). "<br>".msgPool::buildList($name));
       }
     }
     if($type == ""){
@@ -234,7 +234,7 @@ class msgPool
     if ($min == ""){
       return (sprintf(_("Value for '%s' is too large!"), $name));
     } else {
-      return (sprintf(_("'%s' must be smaller than %d!"), $name, $min));
+      return (sprintf(_("'%s' must be smaller than %s!"), $name, $min));
     }
   }
 
@@ -359,14 +359,16 @@ class msgPool
 
   public static function buildList($data)
   {
-    $objects= "";
+    $objects= "<ul>";
     foreach ($data as $key => $value){
       if (is_numeric($key)){
-        $objects.= "<br>\n<i>$value</i>";
+        $objects.= "<li>\n<i>$value</i></li>";
       } else {
-        $objects.= "<br>\n$value (<i>$key</i>)";
+        $objects.= "<li>\n$value (<i>$key</i>)</li>";
       }
     }
+    $objects.= "</ul>";
+    return($objects);
   }
 
   public static function noValidExtension($name)
@@ -406,7 +408,7 @@ class msgPool
           $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);
+        return sprintf(_("This account has %s settings disabled. To enable them, you'll need to add the %s settings first!"), $name, $deps);
       }
     }
   }
@@ -444,6 +446,14 @@ class msgPool
   }
 
 
+  public static function mysqlerror($error,  $plugin= "")
+  {
+    /* Assign headline depending on type */
+    $headline= _("MySQL operation failed!");
+    return $headline."<br><br><i>"._("Error").":</i> ".$error;
+  }
+
+
   public static function ldaperror($error, $dn= "", $type= 0, $plugin= "")
   {
     /* Assign headline depending on type */
@@ -465,7 +475,7 @@ class msgPool
   }
 
 
-  function incorrectUpload($reason= "")
+  public static function incorrectUpload($reason= "")
   {
     if ($reason == ""){
       return _("Upload failed!");
@@ -475,7 +485,7 @@ class msgPool
   }
 
 
-  function siError($error= "")
+  public static function siError($error= "")
   {
     if ($error == ""){
       return _("Communication failure with the infrastructure service!");
@@ -484,24 +494,79 @@ class msgPool
   }
 
 
-  function stillInUse($type, $objects= array())
+  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));
+      return sprintf(_("This '%s' is still in use by this object: %s"), $type, "<br>".msgPool::buildList($objects));
     }
-    return sprintf(_("This '%s' is still in use by these objects: %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>".msgPool::buildList($objects));
+  }
+
+
+  public static function fileDoesNotExist($file)
+  {
+    return sprintf(_("File '%s' does not exist!"), $file);
   }
 
 
-  function cannotReadFile($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:
 ?>