Code

Updated timezone class
[gosa.git] / gosa-core / include / utils / class_msgPool.inc
index 0471d44ccd9a7a6a670a4127f2216a1c2b097389..d77eeb82803d95afd2a4240a4239d7dac7b67c41 100644 (file)
@@ -518,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);
@@ -547,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:
 ?>