Code

Updated timezone class
[gosa.git] / gosa-core / include / utils / class_msgPool.inc
index 1c7a92ca4b6578ac8793fe82edd2ac61efdd7216..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);
@@ -550,7 +556,7 @@ class msgPool
 
   public static function class_not_found($plugin)
   {
-    return (sprintf(_("Could not initialize class '%s', maybe there is a plugin missing in your gosa setup."), $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: