Code

Updated message pool
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 16 Mar 2008 15:52:44 +0000 (15:52 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 16 Mar 2008 15:52:44 +0000 (15:52 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9883 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/utils/class_msgPool.inc

index f69d7edede3e31d70546b574bde119b78cb870be..b4700ccf56df26b6f707c41e0c84111a5aabb5a0 100644 (file)
@@ -496,12 +496,41 @@ class msgPool
   }
 
 
+  function fileDoesNotExist($file)
+  {
+    return sprintf(_("File '%s' does not exist!"), $file);
+  }
+
+
   function cannotReadFile($file)
   {
     return sprintf(_("Cannot open file '%s' for reading!"), $file);
   }
 
 
+  function cannotWriteFile($file)
+  {
+    return sprintf(_("Cannot open file '%s' for writing!"), $file);
+  }
+
+
+  function cannotDeleteFile($file)
+  {
+    return sprintf(_("Cannot delete file '%s'!"), $file);
+  }
+
+
+  function cannotCreateFolder($path)
+  {
+    return sprintf(_("Cannot create folder '%s'!"), $path);
+  }
+
+
+  function cannotDeleteFolder($path)
+  {
+    return sprintf(_("Cannot delete folder '%s'!"), $path);
+  }
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>