summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 278c7d6)
raw | patch | inline | side by side (parent: 278c7d6)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Sun, 16 Mar 2008 15:52:44 +0000 (15:52 +0000) | ||
committer | cajus <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 | patch | blob | history |
index f69d7edede3e31d70546b574bde119b78cb870be..b4700ccf56df26b6f707c41e0c84111a5aabb5a0 100644 (file)
}
+ 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:
?>