From: cajus Date: Sun, 16 Mar 2008 15:52:44 +0000 (+0000) Subject: Updated message pool X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8bb4ef5e2188e36b0db3bf3fb448a4f3f23d07c4;p=gosa.git Updated message pool git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9883 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/utils/class_msgPool.inc b/gosa-core/include/utils/class_msgPool.inc index f69d7eded..b4700ccf5 100644 --- a/gosa-core/include/utils/class_msgPool.inc +++ b/gosa-core/include/utils/class_msgPool.inc @@ -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: ?>