Code

Updated timezone class
[gosa.git] / gosa-core / include / utils / class_msgPool.inc
index 012bb9d1124008492f7f193e9b4433cd8c02f5e1..d77eeb82803d95afd2a4240a4239d7dac7b67c41 100644 (file)
@@ -44,15 +44,15 @@ class msgPool
     }
     if (count($name) == 1){
       if($type == ""){
-        return (_("This object will be deleted:")."<br>".msgPool::buildList($name));
+        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)));
+        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)));
+      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)));
+      return (sprintf(_("These '%s' objects will be deleted: %s"),$type, "<br>".msgPool::buildList($name)."<br><br>"));
     }
   }
 
@@ -367,6 +367,7 @@ class msgPool
         $objects.= "<br>\n$value (<i>$key</i>)";
       }
     }
+    return($objects);
   }
 
   public static function noValidExtension($name)
@@ -492,6 +493,9 @@ class msgPool
     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));
   }
 
@@ -514,6 +518,12 @@ class msgPool
   }
 
 
+  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);
@@ -543,6 +553,11 @@ class msgPool
     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:
 ?>