From: Chuck Hagenbuch Date: Wed, 5 Jan 2011 14:59:29 +0000 (-0500) Subject: Remove VFS_ISOWriter X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a090e6c1048b8bda901ca9d14aa5a3f5ea42a268;p=horde.git Remove VFS_ISOWriter --- diff --git a/framework/VFS_ISOWriter/ISOWriter.php b/framework/VFS_ISOWriter/ISOWriter.php deleted file mode 100644 index 1ab89113f..000000000 --- a/framework/VFS_ISOWriter/ISOWriter.php +++ /dev/null @@ -1,99 +0,0 @@ - - * @package VFS_ISO - */ -abstract class VFS_ISOWriter -{ - - /** - * A VFS object used for reading the source files - * - * @var VFS - */ - var $_sourceVfs = null; - - /** - * A VFS object used for writing the ISO image - * - * @var VFS - */ - var $_targetVfs = null; - - /** - * Hash containing connection parameters. - * - * @var array - */ - var $_params = array(); - - /** - * Constructs a new VFS_ISOWriter object - * - * @param array $params A hash containing parameters. - */ - function VFS_ISOWriter(&$sourceVfs, &$targetVfs, $params) - { - $this->_sourceVfs = &$sourceVfs; - $this->_targetVfs = &$targetVfs; - $this->_params = $params; - } - - /** - * Create the ISO image - * - * @return mixed Null or PEAR_Error on failure. - */ - abstract public function process(); - - /** - * Attempt to create a concrete VFS_ISOWriter subclass. - * - * This method uses its parameters and checks the system to determine - * the most appropriate subclass to use for building ISO images. If - * none is found, an error is raised. - * - * @param object &$sourceVfs Reference to the VFS object from which - * the files will be read to create the - * ISO image. - * @param object &$targetVfs Reference to the VFS object to which the - * ISO image will be written. - * @param array $params Hash of parameters for creating the - * image: - * 'sourceRoot' => A directory in the source VFS for - * files to be read from for the image. - * 'targetFile' => Path and filename of the ISO file to - * write into the target VFS. - * - * @return object A newly created concrete VFS_ISOWriter - * subclass, or a PEAR_Error on an error. - */ - function &factory(&$sourceVfs, &$targetVfs, $params) - { - if (empty($params['targetFile'])) { - return PEAR::raiseError(Horde_VFS_ISOWriter_Translation::t("Cannot proceed without 'targetFile' parameter.")); - } - if (empty($params['sourceRoot'])) { - $params['sourceRoot'] = '/'; - } - - /* Right now, mkisofs is the only driver, but make sure we can - * support it. */ - require_once dirname(__FILE__) . '/ISOWriter/mkisofs.php'; - if (VFS_ISOWriter_mkisofs::strategyAvailable()) { - $isowriter = new VFS_ISOWriter_mkisofs($sourceVfs, $targetVfs, - $params); - return $isowriter; - } - - return PEAR::raiseError(Horde_VFS_ISOWriter_Translation::t("No available strategy for making ISO images.")); - } - -} diff --git a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy.php b/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy.php deleted file mode 100644 index e3ccb4b9a..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy.php +++ /dev/null @@ -1,80 +0,0 @@ - - * @package VFS_ISO - */ -abstract class VFS_ISOWriter_RealInputStrategy { - - /** - * A reference to the source VFS we want to read. - * - * @var VFS - */ - var $_sourceVfs = null; - - /** - * The root directory within the source VFS - * - * @var string - */ - var $_sourceRoot; - - function VFS_ISOWriter_RealInputStrategy(&$sourceVfs, $sourceRoot) - { - $this->_sourceVfs = &$sourceVfs; - $this->_sourceRoot = &$sourceRoot; - } - - /** - * Get a real path to the input tree. - * - * @return mixed A string with the real path, or PEAR_Error on failure. - */ - abstract public function getRealPath(); - - /** - * Indicate we are finished with this input strategy. - * - * @return mixed Null or PEAR_Error on failure. - */ - abstract public function finished(); - - /** - * Decide which strategy to use to get a real FS and create it. - * - * @static - * - * @param object &$sourceVfs The VFS we want to read from. - * @param string $sourceRoot The root directory in that VFS. - * @return object A concrete strategy or PEAR_Error if no strategy is - * available. - */ - function &factory(&$sourceVfs, $sourceRoot) - { - if (strtolower(get_class($sourceVfs)) == 'vfs_file') { - $method = 'direct'; - } else { - $method = 'copy'; - } - - include_once dirname(__FILE__) . '/RealInputStrategy/' . $method . '.php'; - $class = 'VFS_ISOWriter_RealInputStrategy_' . $method; - if (class_exists($class)) { - $strategy = new $class($sourceVfs, $sourceRoot); - } else { - $strategy = PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not load strategy \"%s\"."), - $method)); - } - - return $strategy; - } - -} diff --git a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/copy.php b/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/copy.php deleted file mode 100644 index fd204bce7..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/copy.php +++ /dev/null @@ -1,146 +0,0 @@ - - * @package VFS_ISO - */ -class VFS_ISOWriter_RealInputStrategy_copy extends VFS_ISOWriter_RealInputStrategy { - - var $_tempPath = null; - - function getRealPath() - { - if (is_null($this->_tempPath)) { - $tmp_locations = array('/tmp', '/var/tmp', 'c:\WUTemp', 'c:\temp', - 'c:\windows\temp', 'c:\winnt\temp'); - - /* First, try PHP's upload_tmp_dir directive. */ - $tmp = ini_get('upload_tmp_dir'); - - /* Otherwise, try to determine the TMPDIR environment - * variable. */ - if (empty($tmp)) { - $tmp = getenv('TMPDIR'); - } - - /* If we still cannot determine a value, then cycle through a - * list of preset possibilities. */ - while (empty($tmp) && count($tmp_locations)) { - $tmp_check = array_shift($tmp_locations); - if (@is_dir($tmp_check)) { - $tmp = $tmp_check; - } - } - - if (empty($tmp)) { - return PEAR::raiseError(Horde_VFS_ISOWriter_Translation::t("Cannot find a temporary directory.")); - } - - $this->_tempPath = tempnam($tmp, 'isod'); - @unlink($this->_tempPath); - - $res = $this->_copyToTempPath(); - if (is_a($res, 'PEAR_Error')) { - return $res; - } - } - - return $this->_tempPath; - } - - function finished() - { - return VFS_ISOWriter_RealInputStrategy_copy::_removeRecursive($this->_tempPath); - } - - function _removeRecursive($path) - { - $dh = @opendir($path); - if (!is_resource($dh)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not open directory \"%s\"."), - $path)); - } - while (($ent = readdir($dh)) !== false) { - if ($ent == '.' || $ent == '..') { - continue; - } - - $full = sprintf('%s/%s', $path, $ent); - if (is_dir($full)) { - $res = VFS_ISOWriter_RealInputStrategy_copy::_removeRecursive($full); - if (is_a($res, 'PEAR_Error')) { - return $res; - } - } else { - if (!@unlink($full)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not unlink \"%s\"."), - $full)); - } - } - } - closedir($dh); - - if (!@rmdir($path)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not rmdir \"%s\"."), $full)); - } - } - - function _copyToTempPath() - { - $dirStack = array(''); - - while (count($dirStack) > 0) { - $dir = array_shift($dirStack); - if (empty($dir)) { - $target = $this->_tempPath; - } else { - $target = sprintf('%s/%s', $this->_tempPath, $dir); - } - if (!@mkdir($target)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not mkdir \"%s\"."), $target)); - } - - $sourcePath = $this->_sourceRoot; - if (!empty($dir)) { - $sourcePath .= '/' . $dir; - } - - $list = $this->_sourceVfs->listFolder($sourcePath, null, true); - if (is_a($list, 'PEAR_Error')) { - return $list; - } - - foreach ($list as $entry) { - if ($entry['type'] == '**dir') { - if (empty($dir)) { - $dirStack[] = $entry['name']; - } else { - $dirStack[] = sprintf('%s/%s', $dir, $entry['name']); - } - } else { - $data = $this->_sourceVfs->read($sourcePath, $entry['name']); - if (is_a($data, 'PEAR_Error')) { - return $data; - } - - $targetFile = sprintf('%s/%s', $target, $entry['name']); - $fh = @fopen($targetFile, 'w'); - if (!is_resource($fh)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not open \"%s\" for writing."), $targetFile)); - } - if (fwrite($fh, $data) != strlen($data)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Error writing \"%s\"."), $targetFile)); - } - fclose($fh); - } - } - } - } - -} diff --git a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/direct.php b/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/direct.php deleted file mode 100644 index 6b61b17b6..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/direct.php +++ /dev/null @@ -1,24 +0,0 @@ - - * @package VFS_ISO - */ -class VFS_ISOWriter_RealInputStrategy_direct extends VFS_ISOWriter_RealInputStrategy { - - function getRealPath() - { - return $this->_sourceVfs->_getNativePath($this->_sourceRoot); - } - - function finished() - { - } - -} diff --git a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy.php b/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy.php deleted file mode 100644 index 91638e431..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy.php +++ /dev/null @@ -1,85 +0,0 @@ - - * @package VFS_ISO - */ -abstract class VFS_ISOWriter_RealOutputStrategy { - - /** - * The VFS to which we will write the file. - * - * @var VFS - */ - var $_targetVfs; - - /** - * Where to store the file in the VFS. - * - * @var string - */ - var $_targetFile; - - /** - * Constructor - * - * @param object &$targetVfs The VFS to which we will write the - * file. - * @param string $targetFile The path and name of file to write. - */ - function VFS_ISOWriter_RealOutputStrategy(&$targetVfs, $targetFile) - { - $this->_targetVfs = &$targetVfs; - $this->_targetFile = $targetFile; - } - - /** - * Select and create a concrete strategy for using a real output file. - * - * @param object &$targetVfs The VFS to which we will write the - * result. - * @param string $targetFile The path and filename of the target - * file within the VFS. - * @return object A concrete output strategy object or PEAR_Error on - * failure. - */ - function &factory(&$targetVfs, $targetFile) - { - if (strtolower(get_class($targetVfs)) == 'vfs_file') { - $method = 'direct'; - } else { - $method = 'copy'; - } - - include_once dirname(__FILE__) . '/RealOutputStrategy/' . $method . '.php'; - $class = 'VFS_ISOWriter_RealOutputStrategy_' . $method; - if (class_exists($class)) { - $strategy = new $class($targetVfs, $targetFile); - } else { - $strategy = PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not load strategy \"%s\"."), - $method)); - } - - return $strategy; - } - - /** - * Get a real filesystem filename we can write to. - * - * @return string The filename or PEAR_Error on failure. - */ - abstract public function getRealFilename(); - - /** - * Indicate that we're done writing to the real file. - * - * @return mixed Null or PEAR_Error on failure. - */ - abstract public function finished(); -} diff --git a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/copy.php b/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/copy.php deleted file mode 100644 index 3d64a437b..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/copy.php +++ /dev/null @@ -1,82 +0,0 @@ - - * @package VFS_ISO - */ -class VFS_ISOWriter_RealOutputStrategy_copy extends VFS_ISOWriter_RealOutputStrategy { - - var $_tempFilename = null; - - /** - * Get a real filename to which we can write. - * - * In this implementation, we create and store a temporary filename. - */ - function getRealFilename() - { - if (is_null($this->_tempFilename)) { - - $tmp_locations = array('/tmp', '/var/tmp', 'c:\WUTemp', 'c:\temp', - 'c:\windows\temp', 'c:\winnt\temp'); - - /* First, try PHP's upload_tmp_dir directive. */ - $tmp = ini_get('upload_tmp_dir'); - - /* Otherwise, try to determine the TMPDIR environment - * variable. */ - if (empty($tmp)) { - $tmp = getenv('TMPDIR'); - } - - /* If we still cannot determine a value, then cycle through a - * list of preset possibilities. */ - while (empty($tmp) && count($tmp_locations)) { - $tmp_check = array_shift($tmp_locations); - if (@is_dir($tmp_check)) { - $tmp = $tmp_check; - } - } - - if (empty($tmp)) { - return PEAR::raiseError(Horde_VFS_ISOWriter_Translation::t("Cannot find a temporary directory.")); - } - - $this->_tempFilename = tempnam($tmp, 'iso'); - } - - return $this->_tempFilename; - } - - function finished() - { - if (empty($this->_tempFilename)) { - return; - } - if (!file_exists($this->_tempFilename)) { - return; - } - - if (preg_match('!^(.*)/([^/]*)$!', $this->_targetFile, $matches)) { - $dir = $matches[1]; - $file = $matches[2]; - } else { - $dir = ''; - $file = $this->_targetFile; - } - - $res = $this->_targetVfs->write($dir, $file, $this->_tempFilename, - true); - @unlink($this->_tempFilename); - $this->_tempFilename = null; - return $res; - } - -} - diff --git a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/direct.php b/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/direct.php deleted file mode 100644 index 1d430d5b5..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/direct.php +++ /dev/null @@ -1,41 +0,0 @@ - - * @package VFS_ISO - */ -class VFS_ISOWriter_RealOutputStrategy_direct extends VFS_ISOWriter_RealOutputStrategy { - - function getRealFilename() - { - /* So we shouldn't be accessing _getNativePath(). If we had real - * access control, that would be protected and we'd be a friend, as - * that is the point of this excercise. */ - $filename = $this->_targetVfs->_getNativePath($this->_targetFile); - - /* Make sure the path to the file exists. */ - $dir = dirname($filename); - while (!@is_dir($dir)) { - if (!@mkdir($dir, 0755)) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("Could not mkdir \"%s\"."), - $dir)); - } - $dir = dirname($dir); - } - - return $filename; - } - - function finished() - { - /* Nothing to do. */ - } - -} - diff --git a/framework/VFS_ISOWriter/ISOWriter/Translation.php b/framework/VFS_ISOWriter/ISOWriter/Translation.php deleted file mode 100644 index fb2beda9c..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/Translation.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @package VFS_ISOWriter - */ -class Horde_VFS_ISOWriter_Translation extends Horde_Translation -{ - /** - * Returns the translation of a message. - * - * @var string $message The string to translate. - * - * @return string The string translation, or the original string if no - * translation exists. - */ - static public function t($message) - { - self::$_domain = 'Horde_VFS_ISOWriter'; - self::$_directory = '@data_dir@' == '@'.'data_dir'.'@' ? dirname(__FILE__) . '/../locale' : '@data_dir@/VFS_ISOWriter/locale'; - return parent::t($message); - } - - /** - * Returns the plural translation of a message. - * - * @param string $singular The singular version to translate. - * @param string $plural The plural version to translate. - * @param integer $number The number that determines singular vs. plural. - * - * @return string The string translation, or the original string if no - * translation exists. - */ - static public function ngettext($singular, $plural, $number) - { - self::$_domain = 'Horde_VFS_ISOWriter'; - self::$_directory = '@data_dir@' == '@'.'data_dir'.'@' ? dirname(__FILE__) . '/../locale' : '@data_dir@/VFS_ISOWriter/locale'; - return parent::ngettext($singular, $plural, $number); - } -} diff --git a/framework/VFS_ISOWriter/ISOWriter/mkisofs.php b/framework/VFS_ISOWriter/ISOWriter/mkisofs.php deleted file mode 100644 index 11a91eba1..000000000 --- a/framework/VFS_ISOWriter/ISOWriter/mkisofs.php +++ /dev/null @@ -1,74 +0,0 @@ - - * @package VFS_ISO - */ -class VFS_ISOWriter_mkisofs extends VFS_ISOWriter { - - function process() - { - require_once dirname(__FILE__) . '/RealInputStrategy.php'; - $inputStrategy = &VFS_ISOWriter_RealInputStrategy::factory($this->_sourceVfs, $this->_params['sourceRoot']); - if (is_a($inputStrategy, 'PEAR_Error')) { - return $inputStrategy; - } - - require_once dirname(__FILE__) . '/RealOutputStrategy.php'; - $outputStrategy = &VFS_ISOWriter_RealOutputStrategy::factory($this->_targetVfs, $this->_params['targetFile']); - if (is_a($outputStrategy, 'PEAR_Error')) { - return $outputStrategy; - } - - $cmd = sprintf('mkisofs -quiet -r -J -o %s %s >/dev/null', - escapeshellarg($outputStrategy->getRealFilename()), - escapeshellarg($inputStrategy->getRealPath())); - $res = system($cmd, $ec); - - /* Could be a lot of space used. Give both a chance to clean up even - * if one errors out. */ - $finRes1 = $inputStrategy->finished(); - $finRes2 = $outputStrategy->finished(); - if (is_a($finRes1, 'PEAR_Error')) { - return $finRes1; - } - if (is_a($finRes2, 'PEAR_Error')) { - return $finRes2; - } - - if ($res === false) { - return PEAR::raiseError(Horde_VFS_ISOWriter_Translation::t("Unable to run 'mkisofs'.")); - } - if ($ec != 0) { - return PEAR::raiseError(sprintf(Horde_VFS_ISOWriter_Translation::t("mkisofs error code %d while making ISO."), $ec)); - } - } - - /** - * Determine if we can use this driver to make images - * - * @static - * - * @return boolean Whether we can use this strategy for making ISO images. - */ - function strategyAvailable() - { - /* Check if we can find and execute the `mkisofs' command. */ - $res = system("mkisofs -help >/dev/null 2>&1", $ec); - if ($res === false) { - return false; - } - if ($ec != 0) { - return false; - } - return true; - } - -} - diff --git a/framework/VFS_ISOWriter/locale/Horde_VFS_ISOWriter.pot b/framework/VFS_ISOWriter/locale/Horde_VFS_ISOWriter.pot deleted file mode 100644 index 7f3a6a7a5..000000000 --- a/framework/VFS_ISOWriter/locale/Horde_VFS_ISOWriter.pot +++ /dev/null @@ -1,75 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Horde Project -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 2115d9457..000000000 --- a/framework/VFS_ISOWriter/locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Arabic translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "لا إمكانية لنسخ %s إلى %s" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "لا إمكانية لنسخ %s إلى %s" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "لا إمكانية لنسخ %s إلى %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "لا توجد إمكانية لتغيير اسم ملف الـ VFS %s/%s." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 1f18e8f91..000000000 --- a/framework/VFS_ISOWriter/locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Bulgarian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Невъзможност да се копира %s то %s." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Невъзможност да се копира %s то %s." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Невъзможност да се копира %s то %s." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Грешка при PGP подписването на писмо." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "Грешка при изтриване '%s': %s." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index ed188a3a2..000000000 --- a/framework/VFS_ISOWriter/locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Bosnian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Nije bilo moguce obrisati poruke od %s: %s" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nije bilo moguce obrisati poruke od %s: %s" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 0a7094dae..000000000 Binary files a/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 08886400c..000000000 --- a/framework/VFS_ISOWriter/locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Catalan translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "No es pot trobar un directori temporal." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "No es pot continuar sense el paràmetre 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "No s'ha pogut carregar la bústia" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "No s'ha pogut suprimir «%s»." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "No s'ha pogut obrir '%s' per escritura: %s" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "No s'ha pogut obrir el directori de memòria cau: %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "No s'ha pogut suprimir «%s»." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "No s'ha pogut suprimir «%s»." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "S'ha produït un error en escriure el fitxer \"%s\"" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "No es disposa d'una estratègia per crear imatges ISO." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "No s'ha pogut executar 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "S'ha produït un codi d'error %d del mkisofs en crear ISO." diff --git a/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 5d6efeecc..000000000 Binary files a/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 914688f37..000000000 --- a/framework/VFS_ISOWriter/locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Czech translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Nelze najít dočasný adresář." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Nelze pokračovat bez parametru 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Strategie \"%s\" je nedostupná." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Nelze vytvořit \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Nelze otevřít \"%s\" k zápisu." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Nelze otevřít adresář \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Nelze odstranit adresář \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nelze smazat \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Chyba při zápisu \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Není dostupná žádná strategie pro tvorbu ISO obrazů." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Nelze provést 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "chybový kód mkisofs %d při vytváření ISO." diff --git a/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index e0fe5848d..000000000 Binary files a/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index ed8d382ba..000000000 --- a/framework/VFS_ISOWriter/locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Danish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Kan ikke finde et midlertidigt katalog." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Kan ikke fortsætte uden 'targetFile'-parametren." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Kunne ikke hente strategi \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Kunne ikke mkdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Kunne ikke åbne \"%s\" for skrivning." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Kunne ikke åbne katalog \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Kunne ikke rmdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Kunne ikke unlink \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Fejl under skrivning af \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Ingen tilgængelig strategi til at lave ISO-billeder." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Kan ikke afvikle 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs fejlkode %d under dannelse af ISO." diff --git a/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 0758bb042..000000000 Binary files a/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index f9eed1b21..000000000 --- a/framework/VFS_ISOWriter/locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# German translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Kein temporäres Verzeichnis gefunden." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Fortsetzung ohne \"targetFile\"-Parameter nicht möglich." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Die Strategie \"%s\" konnte nicht geladen werden." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Das Verzeichnis \"%s\" konnte nicht angelegt werden." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "\"%s\" konnte nicht zum Schreiben geöffnet werden." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Verzeichnis \"%s\" konnte nicht geöffnet werden." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Verzeichnis \"%s\" konnte nicht gelöscht werden." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "\"%s\" konnte nicht gelöscht werden." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Fehler beim Schreiben von \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Keine Strategie zum Erstellen von ISO-Abbildern verfügbar." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "\"mkisofs\" konnte nicht ausgeführt werden." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs-Fehlercode %d bei der Erstellung des ISO-Abbildes." diff --git a/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 14d0ba74a..000000000 Binary files a/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index ff472c227..000000000 --- a/framework/VFS_ISOWriter/locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Greek translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Δε βρίσκω προσωρινό φάκελο (temp dir)." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Αδύνατη η συνέχεια χωρίς την παράμετρο \"targetFile\"." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Αδύνατο το φόρτωμα στρατηγικής \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Αδύνατη η δημιουργία φακέλου \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Αδύνατο το άνοιγμα \"%s\" για εγγραφή." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Δεν μπορώ να ανοίξω το φάκελο \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Αδύνατη η διαγραφή φακέλου (rmdir) \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Δε μπορώ να αποσυνδέσω \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, fuzzy, php-format -msgid "Error writing \"%s\"." -msgstr "Λάθος γράφοντας \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Δεν υπάρχει διαθέσιμη στρατηγική για δημιουργία ISO images." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Αδύνατη η εκτέλεση του \"mkisofs\"." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs-κωδικός λάθους %d κατά τη δημιουργία ISO." diff --git a/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index f731297d6..000000000 Binary files a/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e50408e77..000000000 --- a/framework/VFS_ISOWriter/locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# English translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Cannot find a temporary directory." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Cannot proceed without 'targetFile' parameter." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Could not load strategy \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Could not mkdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Could not open \"%s\" for writing." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Could not open directory \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Could not rmdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Could not unlink \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Error writing \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "No available strategy for making ISO images." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Unable to run 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs error code %d while making ISO." diff --git a/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 91d16edb9..000000000 Binary files a/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index fcef73e0a..000000000 --- a/framework/VFS_ISOWriter/locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Spanish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "No se encuentra un directorio temporal." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "No se puede continuar sin el parámetro 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "No se pudo cargar la estrategia \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "No se pudo crear el directorio \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "No se pudo abrir \"%s\" para escribir." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "No se pudo abrir el directorio \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "No se pudo rmdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "No se pudo desvincular \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Error al escribir \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "No se dispone de estrategia de elaboración de imágenes ISO." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Incapaz de ejecutar 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "código de error mkisofs %d al realizar ISO." diff --git a/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a0dab2e27..000000000 Binary files a/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 788b7380c..000000000 --- a/framework/VFS_ISOWriter/locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Estonian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Ei leia ajutist kataloogi" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Ilma 'targetFile' parameetrita ei saa jätkata." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Ei õnnestunud laadida strateegiat \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "mkdir \"%s\" nurjus." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "\"%s\" avamine kirjutamiseks nurjus." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Ei saanud avada kataloogi \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "rmdir \"%s\" ei õnnestunud." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "unlink \"%s\" nurjus." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Viga \"%s\" kirjutamisel." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Puudub strateegia ISOde loomiseks." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Ei õnnestu käivitada 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs veakood %d ISO loomisel." diff --git a/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 2bb5e5637..000000000 Binary files a/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e7dd6353e..000000000 --- a/framework/VFS_ISOWriter/locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,16 +0,0 @@ -# Basque translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" diff --git a/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 797b8a19a..000000000 Binary files a/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 204fb4010..000000000 --- a/framework/VFS_ISOWriter/locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,83 +0,0 @@ -# Persian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "نمی‌توان یک شاخه موقت پیدا کرد" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "نمی‌توان بدون پارامتر 'پرونده مقصد' ادامه داد" - -# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# -# -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "نمی‌توان استراتژی را بار کرد '%s'" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "نمی‌توان شاخه '%s'ایجاد کرد " - -# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# -# -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "نمی‌توان '%s' را برای نوشتن باز کرد " - -# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# -# -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "نمی‌توان شاخه '%s' را باز نمود" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "نمی‌توان شاخه '%s' را حذف نمود ." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "نمی‌توان پیوند '%s' را قطع کرد" - -# -#: ISOWriter/RealInputStrategy/copy.php:138 -#, fuzzy, php-format -msgid "Error writing \"%s\"." -msgstr "خطای نوشتن '%s' " - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "ISO نیست استراتژی در دسترسی برای ساختن تصویر " - -# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# -# -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "نمی‌توان 'mkisofs' را اجرا نمود" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 6e8aa2bcf..000000000 Binary files a/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index c7b8073e6..000000000 --- a/framework/VFS_ISOWriter/locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Finnish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Väliaikaishakemistoa ei löytynyt." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Ei voida jatkaa ilman 'targetFile' parametria." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Ei voitu lukea strategiaa \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Komento mkdir \"%s\" epäonnistui." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Tiedostoon \"%s\" ei voi kirjoittaa." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Ei voi aukaista hakemistoa \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Komento rmdir \"%s\" epäonnistui." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Komento unlink \"%s\" epäonnistui." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Virhe kirjoitettaessa \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Ei ole saatavilla suunnitelmaa ISO levykuvatiedostojen tekemiseksi." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Ei voida suorittaa komentoa 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs virhekoodi %d ISO:a tehdessä." diff --git a/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9a82c4d4..000000000 Binary files a/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 9848595b6..000000000 --- a/framework/VFS_ISOWriter/locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# French translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Impossible de trouver un répertoire temporaire." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Impossible de procéder sans le paramètre « targetFile »" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Impossible de charger la stratégie « %s »." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Impossible de créer le répertoire « %s »." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Ouverture de « %s » impossible en écriture." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Ouverture du dossier « %s » impossible." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Effacement du dossier « %s » impossible. " - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Suppression de « %s » impossible." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Erreur lors de l'enregistrement de « %s »." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Pas de stratégie disponible pour faire des images ISO." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Impossible d'exécuter 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "erreur mkisofs code %d en créant l'ISO." diff --git a/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index b01662dd3..000000000 --- a/framework/VFS_ISOWriter/locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Galician translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Fallo ó abrir o módulo de tarefas de mantemento %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a24029552..000000000 Binary files a/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index b6da713de..000000000 --- a/framework/VFS_ISOWriter/locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Hebrew translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 82bd08a4b..000000000 Binary files a/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index d9244c7c2..000000000 --- a/framework/VFS_ISOWriter/locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,78 +0,0 @@ -# Croatian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Ne može se pronaći privremeni direktorij." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Postupak ne može dalje bez parametra 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Učitavanje strategije \"%s\" nije uspjelo." - -# kreiranje direktorija? -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "mkdir \"%s\" nije uspio." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Ne može otvoriti \"%s\" za pisanje." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Direktorij \"%s\" se ne može otvoriti." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "rmdir \"%s\" nije uspio." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nije uspjelo brisanje \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Greška kod pisanja \"%s\"." - -# imidža, kopije, podataka? -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Nema dostupnih načina za izradu ISO preslike." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Nije uspjelo pokretanje programa 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs greška u kodu %d prilikom izrade ISO podataka." diff --git a/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index b5280a385..000000000 Binary files a/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 96c7f9c61..000000000 --- a/framework/VFS_ISOWriter/locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Hungarian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Nem található az ideiglenes állományokat tartalmazó alkönyvtár." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "A művelet nem folytatható 'targetFile' paraméter nélkül." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "A(z) \"%s\" stratégia nem tölthető be." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "A(z) \"%s\" alkönyvtár nem hozható létre." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Nem sikerült \"%s\"-t írási céllal megnyitni." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "A(z) \"%s\" alkönyvtár nem nyitható meg." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "A(z) \"%s\" alkönyvtár nem törölhető." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "\"%s\" nem törölhető." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Hiba történt \"%s\" írásakor." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Nincs lehetőség ISO állományok létrehozására." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Az 'mkisofs' program nem futtatható." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" -"Az mkisofs program %d hibakóddal leállt az ISO állomány készítése közben." diff --git a/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 2bb5e5637..000000000 Binary files a/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index b95ba0394..000000000 --- a/framework/VFS_ISOWriter/locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Indonesian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Tidak dapat menyimpan konfigurasi %s." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e38c13480..000000000 --- a/framework/VFS_ISOWriter/locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Icelandic translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Gat ekki eytt skeytum frá %s: %s" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Þú átt 1 nýtt skeyti." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 001cbdb55..000000000 Binary files a/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index af51c9759..000000000 --- a/framework/VFS_ISOWriter/locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Italian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Impossibile cercare una directory temproanea." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Impossibile procedere senza il parametro 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Impossibile caricare la strategia \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Impossibile creare la directory \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Impossibile aprire \"%s\" in scrittura." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Impossibile aprire la directory \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Impossibile eliminare la directory \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Impossibile scollegare \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Errore in scrittura \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Non sono disponibili strategie per marcare le immagini ISO" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Impossibile eseguire 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "Codice errore mkisofs %d durente la creazione dell'ISO." diff --git a/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 28233e2f4..000000000 Binary files a/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e29d652a4..000000000 --- a/framework/VFS_ISOWriter/locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Japanese translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "作業ディレクトリが見付かりません。" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "'targetFile' パラメータなしでは続行できません。" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "ストラテジー \"%s\" をロードできませんでした。" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Mkdir \"%s\" に失敗しました。" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "\"%s\" を書き込み用にオープンできませんでした。" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "ディレクトリー \"%s\" が開けませんでした。" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "\"%s\" ディレクトリーが削除できません。" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "\"%s\" を削除(unlink)できませんでした。" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "\"%s\" の書き込みエラーです。" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "ISO イメージを作る方法がありません。" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "'mkisofs' が実行できません。" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "ISO ファイル作成中での mkisofs のエラーコード %d。" diff --git a/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e7ff446ba..000000000 --- a/framework/VFS_ISOWriter/locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Khmer translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 43a68fc20..000000000 Binary files a/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 3bf5d45e1..000000000 --- a/framework/VFS_ISOWriter/locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Korean translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "%s를 엽니다?" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "%s를 엽니다?" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "%s를 엽니다?" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Maintenance_Task 모듈 %s을(를) 열 수 없습니다." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "%s를 엽니다?" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "%s를 엽니다?" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "VFS 파일 %s/%s을(를) 변경할 수 없습니다." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 6235b3782..000000000 Binary files a/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index d1a590817..000000000 --- a/framework/VFS_ISOWriter/locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Lithuanian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Negaliu rasti laikinojo katalogo." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Negaliu apdoroti 'targetFile' parametro." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Nepavyko užkrauti strategijos \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Nepavyko sukurti katalogo \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Nepavyko atidaryti \"%s\" rašymui." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Nepavyko atidaryti katalogo \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Nepavyko ištrinti katalogo \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nepavyko nutraukti ryšio \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Klaida rašant \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Nenurodyta strategija ISO rašymui." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Nepavyko paleisti 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs klaidos kodas %d bedarant ISO." diff --git a/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 4e9fdb8b7..000000000 Binary files a/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 6aac19c3a..000000000 --- a/framework/VFS_ISOWriter/locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Latvian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Neizdevās atvērt Maintenance_Task moduli %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a9050d372..000000000 Binary files a/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 438e1cafe..000000000 --- a/framework/VFS_ISOWriter/locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Macedonian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Модулот на задачата за одржување %s не може да биде отворен" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index f15d44295..000000000 Binary files a/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 6d1de23e6..000000000 --- a/framework/VFS_ISOWriter/locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Norwegian Bokmal translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Kan ikke finne en temp-katalog." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Kan ikke fortsette uten 'targetFile' parameter." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Kunne ikke laste inn strategi '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Kunne ikke opprette katalogen '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Kunne ikke åpne '%s' for skriving." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Kunne ikke åpne katalogen '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Kunne ikke slette katalogen '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Kunne ikke fjerne '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, fuzzy, php-format -msgid "Error writing \"%s\"." -msgstr "Feil ved skriving til '%s'." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Ingen tilgjengelig strategi for å lage ISO-filer." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 3453b32d7..000000000 Binary files a/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 1899336e7..000000000 --- a/framework/VFS_ISOWriter/locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,17 +0,0 @@ -# Dutch translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index a24029552..000000000 Binary files a/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 35c07df19..000000000 --- a/framework/VFS_ISOWriter/locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Norwegian Nynorsk translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Kunne ikkje opne Maintenance_Task-modulen %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Kunne ikkje PGP-signere melding." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "Kunne ikkje slette '%s': %s." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 79dc68446..000000000 Binary files a/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 9db0db4f7..000000000 --- a/framework/VFS_ISOWriter/locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,77 +0,0 @@ -# Polish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Nie udało się znaleźć katalogu tymczasowego." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Nie można kontynuować bez parametru 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Nie udało się załadować strategii \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Nie można utworzyć katalogu \"%s\"" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Nie udało się otworzyć \"%s\" do zapisu." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Nie można otworzyć katalogu \"%s\"" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Nie można skasować katalogu \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nie można skasować pliku \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Błąd przy zapisie \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "Błąd przy uruchamianiu 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index b0aed219b..000000000 Binary files a/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 877ea070b..000000000 --- a/framework/VFS_ISOWriter/locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Portuguese translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Não consigo encontrar um directório temporário." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Impossível continuar sem o parâmetro 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Impossível carregar estratégia \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Impossível mkdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Não foi possível abrir \"%s\" para escrita." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Não foi possível abrir pasta \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Impossível rmdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Não foi possível desligar \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Erro ao escrever \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Não há nenhuma estratégia disponível para realizar imagens ISO." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Não foi possível executar 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "Erro mkisofs com código %d ao construir ISO." diff --git a/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index f283d304f..000000000 Binary files a/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 8ea555e1b..000000000 --- a/framework/VFS_ISOWriter/locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Portuguese translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Não é possível encontrar um diretório temporário." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Não é possível prosseguir sem o parâmetro'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Não foi possível carregar estratégia \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Não foi possível executar mkdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Não foi possível abrir \"%s\" para redação." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Não foi possível abrir a pasta \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Não foi possível executar rmdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Não foi possível remover o link \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Erro gravando \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Nenhuma estratégia disponível para criar imagens ISO." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Impossível executar 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "código de erro %d do mkisofs enquanto gerava a ISO." diff --git a/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 386426d28..000000000 Binary files a/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 1460cb05c..000000000 --- a/framework/VFS_ISOWriter/locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Romanian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Nu pot deschide modulul de Mentenanta %s" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 962f4244c..000000000 Binary files a/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index e038f99a1..000000000 --- a/framework/VFS_ISOWriter/locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,77 +0,0 @@ -# Russian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Невозможно создать каталог временных файлов." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Невозможно обработать без параметра 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Невозможно загрузить стратегию \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Невозможно создать каталог \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Невозможно открыть \"%s\" для записи." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Невозможно открыть каталог \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Невозможно удалить каталог \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Невозможно удалить \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Ошибка записи \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -#, fuzzy -msgid "Unable to run 'mkisofs'." -msgstr "Невозможно соединиться с SQL сервером." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index e1fa2101d..000000000 Binary files a/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 47fa36106..000000000 --- a/framework/VFS_ISOWriter/locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Slovak translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Nepodarilo sa nájsť dočasný adresár." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Nemožno pokračovať bez parametra 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Nepodarilo sa načítať stratégiu \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Nepodarilo sa spustiť mkdir \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Nepodarilo sa otvoriť \"%s\" pre zápis." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Nepodarilo sa otvoriť priečinok \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Nepodarilo sa spustiť rmdir \"%s\".." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Nepodarilo sa spustiť unlink \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Chyba pri zápise \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Pre vytváranie ISO obrazov nie je k dispozícii žiadna stratégia." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Nepodarilo sa spustiť 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "počas vytvárania ISO nastala chyba mkisofs %d" diff --git a/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 42e3a6e4e..000000000 Binary files a/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index 731bd5736..000000000 --- a/framework/VFS_ISOWriter/locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Slovenian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Ne najdem začasne mape." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Ne morem nadaljevati brez parametrov 'ciljne datoteke'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Ni mogoče naložiti strategije \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Ne morem ustvariti mape \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Ni mogoče odpreti \"%s\" za pisanje." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Ni mogoče prebrati imenik \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Ne morem izbrisati mape \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "Ni mogoče odstraniti povezave z \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Napaka pri pisanju \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Strategija za izdelavo ISO slik, ni dostopna." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Ne morem spremeniti na %s." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs napaka kode %d, med pripravljanjem ISO." diff --git a/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 4b98896fc..000000000 Binary files a/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index f78b0b841..000000000 --- a/framework/VFS_ISOWriter/locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Swedish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Kan inte hitta en temprär mapp." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, fuzzy, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Kan inte ladda strategi '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, fuzzy, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Kan inte skapa mapp '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, fuzzy, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Kan inte öppna '%s' för skriving." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, fuzzy, php-format -msgid "Could not open directory \"%s\"." -msgstr "Kan inte öppna mapp '%s'" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, fuzzy, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Kan inte radera mapp '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Kan inte radera '%s'." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, fuzzy, php-format -msgid "Error writing \"%s\"." -msgstr "Fel vid skrivning av '%s'." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Kan inte köra 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "" diff --git a/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index fc29ad800..000000000 Binary files a/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index f9146e37b..000000000 --- a/framework/VFS_ISOWriter/locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,75 +0,0 @@ -# Turkish translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Geçici dizin bulunamadı." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "'targetFile' değiştirgesi olmadan devam edilemez." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "\"%s\" yöntemi yüklenemedi." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "\"%s\" dizini yaratılamadı." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "\"%s\" yazılmak için açılamadı." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "\"%s\" dizini açılamadı." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "\"%s\" dizini silinemedi." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "\"%s\" silinemedi." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "\"%s\"'i yazaken hata oluştu." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "ISO imajları ouşturmak için kullanılabilir bir yöntem yok." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "'mkisofs' çalıştırılamıyor." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "mkisofs ISO yaparken hata kodu:%d." diff --git a/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 301d91ade..000000000 Binary files a/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index f625577dd..000000000 --- a/framework/VFS_ISOWriter/locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,76 +0,0 @@ -# Ukrainian translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "Не можу знайти тимчасову папку." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "Не можу продовжити без параметра 'targetFile'." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "Не можу завантажити стратегію \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "Не можу створити папку \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "Не можу відкрити \"%s\" для запису." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "Не можу відкрити \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "Не можу видалити \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, fuzzy, php-format -msgid "Could not unlink \"%s\"." -msgstr "Не можу створити папку \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "Помилка запису \"%s\"." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "Немає доступного плану для створення ISO образів" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "Не можу запустити 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "Поки створювався ISO, трапилась помилка коду mkisofs %d." diff --git a/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 0a6b0950e..000000000 Binary files a/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index d1a510b7b..000000000 --- a/framework/VFS_ISOWriter/locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Chinese translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "无法找到临时目录。" - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "缺少“targetFile”参数,则无法继续。" - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "无法加载策略“%s” 。" - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "无法创建目录“%s”。" - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "无法打开“%s”进行写入 。" - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "无法打开目录“%s”。" - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "无法删除目录“%s”。" - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "无法取消链接“%s”。" - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "写入“%s”时出错。" - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "无可用的策略来创建 ISO 映像。" - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "无法执行“mkisofs”。" - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "制作 ISO 时,mkisofs 错误码 %d。" diff --git a/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.mo b/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.mo deleted file mode 100644 index 1bfbef8b6..000000000 Binary files a/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.mo and /dev/null differ diff --git a/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.po b/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.po deleted file mode 100644 index ddafafe9c..000000000 --- a/framework/VFS_ISOWriter/locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.po +++ /dev/null @@ -1,74 +0,0 @@ -# Chinese translations for Horde_VFS_ISOWriter module. -# Copyright (C) 2010 Horde Project -# This file is distributed under the same license as the Horde_VFS_ISOWriter module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_VFS_ISOWriter\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ISOWriter/RealInputStrategy/copy.php:42 -#: ISOWriter/RealOutputStrategy/copy.php:48 -msgid "Cannot find a temporary directory." -msgstr "找不到暫存目錄." - -#: ISOWriter.php:93 -msgid "Cannot proceed without 'targetFile' parameter." -msgstr "缺少 'targetFile' 參數無法繼續處理." - -#: ISOWriter/RealInputStrategy.php:85 ISOWriter/RealOutputStrategy.php:80 -#, php-format -msgid "Could not load strategy \"%s\"." -msgstr "無法載入策略 \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:106 -#: ISOWriter/RealOutputStrategy/direct.php:26 -#, php-format -msgid "Could not mkdir \"%s\"." -msgstr "無法建立目錄 \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:135 -#, php-format -msgid "Could not open \"%s\" for writing." -msgstr "無法開啟 \"%s\" 以寫入." - -#: ISOWriter/RealInputStrategy/copy.php:66 -#, php-format -msgid "Could not open directory \"%s\"." -msgstr "無法開啟目錄 \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:90 -#, php-format -msgid "Could not rmdir \"%s\"." -msgstr "無法刪除目錄 \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:82 -#, php-format -msgid "Could not unlink \"%s\"." -msgstr "無法刪除 \"%s\"." - -#: ISOWriter/RealInputStrategy/copy.php:138 -#, php-format -msgid "Error writing \"%s\"." -msgstr "寫入 \"%s\" 時發生錯誤." - -#: ISOWriter.php:108 -msgid "No available strategy for making ISO images." -msgstr "無可用的策略建造 ISO 影像." - -#: ISOWriter/mkisofs.php:46 -msgid "Unable to run 'mkisofs'." -msgstr "無法執行 'mkisofs'." - -#: ISOWriter/mkisofs.php:49 -#, php-format -msgid "mkisofs error code %d while making ISO." -msgstr "製作 ISO 時,mkisofs 錯誤碼 %d." diff --git a/framework/VFS_ISOWriter/package.xml b/framework/VFS_ISOWriter/package.xml deleted file mode 100644 index 925470ce8..000000000 --- a/framework/VFS_ISOWriter/package.xml +++ /dev/null @@ -1,456 +0,0 @@ - - - VFS_ISOWriter - pear.horde.org - Virtual File System ISO-writing API - This package provides VFS extensions for writing ISO CD images. It currently has drivers for: -* mkisofs - - Jason M. Felice - eraserhd - jason.m.felice@gmail.com - yes - - 2010-10-22 - - - 0.0.2 - 0.0.2 - - - alpha - alpha - - LGPL - -Converted to package.xml 2.0 for pear.horde.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 4.2.0 - - - 1.4.0b1 - - - Translation - pear.horde.org - - - VFS - pear.php.net - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0.0.1 - 0.0.1 - - - alpha - alpha - - 2004-10-06 - LGPL - -Initial release as a PEAR package - - - - - 0.0.2 - 0.0.2 - - - alpha - alpha - - 2010-10-22 - LGPL - -Converted to package.xml 2.0 for pear.horde.org - - - - diff --git a/framework/VFS_ISOWriter/tests/inputstrategy.phpt b/framework/VFS_ISOWriter/tests/inputstrategy.phpt deleted file mode 100644 index da016c842..000000000 --- a/framework/VFS_ISOWriter/tests/inputstrategy.phpt +++ /dev/null @@ -1,125 +0,0 @@ ---TEST-- -VFS_ISOWriter_RealInputStrategy:: and drivers ---FILE-- - '/tmp')); - testInputStrategy($vfs, 'vfs_isowriter_realinputstrategy_direct'); -} - -function testCopyInputStrategy() -{ - echo "Testing copy input strategy... "; - - $vfs = &new VFS_notfile(array('vfsroot' => '/tmp')); - testInputStrategy($vfs, 'vfs_isowriter_realinputstrategy_copy'); -} - -function testInputStrategy(&$vfs, $expectClass) -{ - /* Contents for generated files. */ - $contents = array('a' => md5(uniqid('a', true)), - 'd/b' => md5(uniqid('b', true)), - 'd/e/c' => md5(uniqid('c', true))); - - foreach ($contents as $name => $data) { - if (preg_match('!^(.*)/([^/]*)$!', $name, $matches)) { - $dir = $matches[1]; - $file = $matches[2]; - } else { - $dir = ''; - $file = $name; - } - - try { - $vfs->writeData('root/' . $dir, $file, $data, true); - } catch (VFS_Exception $e) { - printf("ERROR(1): %s: %s\n", $name, $e->getMessage()); - return; - } - } - - $inputStrategy = &VFS_ISOWriter_RealInputStrategy::factory($vfs, 'root'); - if (is_a($inputStrategy, 'PEAR_Error')) { - printf("ERROR(2): %s\n", $inputStrategy->getMessage()); - return; - } - - if ($expectClass != get_class($inputStrategy)) { - printf("ERROR(3): expected class '%s', got '%s'.\n", $expectClass, - get_class($inputStrategy)); - return; - } - - $realPath = $inputStrategy->getRealPath(); - if (is_a($realPath, 'PEAR_Error')) { - printf("ERROR(4): %s\n", $realPath->getMessage()); - return; - } - - foreach ($contents as $name => $data) { - $path = sprintf('%s/%s', $realPath, $name); - if (!file_exists($path)) { - printf("ERROR(5): file '%s' does not exist.\n", $path); - return; - } - - $fh = @fopen($path, 'r'); - if (!is_resource($fh)) { - printf("ERROR(6): could not open '%s' for reading.\n", $path); - return; - } - $fileData = fread($fh, filesize($path)); - fclose($fh); - if ($fileData != $data) { - printf("ERROR(7): %s: contents should be '%s' but got '%s'.\n", - $path, $data, $fileData); - return; - } - } - - $res = $inputStrategy->finished(); - if (is_a($res, 'PEAR_Error')) { - printf("ERROR(8): %s\n", $res->getMessage()); - return; - } - - foreach ($contents as $name => $data) { - if (preg_match('!^(.*)/([^/]*)$!', $name, $matches)) { - $dir = $matches[1]; - $file = $matches[2]; - } else { - $dir = ''; - $file = $name; - } - $vfs->deleteFile('root/' . $dir, $file); - } - - $vfs->deleteFolder('root', 'd', true); - echo "ok\n"; -} - ---EXPECT-- -Load... ok -Testing direct input strategy... ok -Testing copy input strategy... ok diff --git a/framework/VFS_ISOWriter/tests/isowriter.phpt b/framework/VFS_ISOWriter/tests/isowriter.phpt deleted file mode 100644 index 4e5658f90..000000000 --- a/framework/VFS_ISOWriter/tests/isowriter.phpt +++ /dev/null @@ -1,106 +0,0 @@ ---TEST-- -VFS_ISOWriter:: and drivers ---FILE-- - '/tmp')); -} catch (VFS_Exception $e) { - printf("ERROR(1): %s\n", $e->getMessage); - exit; -} -echo "ok\n"; - -echo "Populating VFS... "; -$FILES = array('a' => md5(uniqid('a', true)), - 'c/d' => md5(uniqid('c/d', true)), - 'e/f' => md5(uniqid('e/f', true))); - -foreach ($FILES as $fname => $data) { - preg_match('!^(.*)/([^/]*)$!', 'root/' . $fname, $matches); - $path = $matches[1]; - $file = $matches[2]; - try { - $vfs->writeData($path, $file, $data, true); - } catch (VFS_Exception $e) { - printf("ERROR(1): %s\n", $e->getMessage()); - exit; - } -} -echo "ok\n"; - -echo "Creating ISOWriter... "; -$iso = &VFS_ISOWriter::factory($vfs, $vfs, array('sourceRoot' => 'root', - 'targetFile' => 'test.iso')); -if (is_a($iso, 'PEAR_Error')) { - printf("ERROR(1): %s\n", $iso->getMessage()); - exit; -} -echo "ok\n"; - -echo "Creating ISO Image... "; -$res = $iso->process(); -if (is_a($res, 'PEAR_Error')) { - printf("ERROR(1): %s\n", $res->getMessage()); - exit; -} -if (!file_exists('/tmp/test.iso')) { - printf("ERROR(2): /tmp/test.iso does not exist after creating image.\n"); - exit; -} -echo "ok\n"; - -echo "Checking ISO Image (if possible)... "; -system("/sbin/modprobe loop >/dev/null 2>&1"); -system("/sbin/losetup /dev/loop3 /tmp/test.iso >/dev/null 2>&1", $ec); -if ($ec == 0) { - if (!@mkdir("/tmp/iso-mount", 0755)) { - printf("ERROR(1): mkdir /tmp/iso-mount failed.\n"); - exit; - } - system("/bin/mount -t iso9660 /dev/loop3 /tmp/iso-mount >/dev/null", $ec); - if ($ec != 0) { - @rmdir("/tmp/iso-mount"); - printf("ERROR(2): mount of ISO image failed.\n"); - exit; - } - foreach ($FILES as $fname => $data) { - $path = '/tmp/iso-mount/' . $fname; - if (!file_exists($path)) { - @rmdir("/tmp/iso-mount"); - printf("ERROR(3): %s: does not exist.\n", $path); - exit; - } - $fh = @fopen($path, 'r'); - if (!is_resource($fh)) { - @rmdir("/tmp/iso-mount"); - printf("ERROR(4): %s: could not open.\n", $path); - exit; - } - $readData = fread($fh, filesize($path)); - fclose($fh); - if ($data != $readData) { - @rmdir("/tmp/iso-mount"); - printf("ERROR(5): %s: data does not match\n", $path); - exit; - } - } - system("/bin/umount /dev/loop3 >/dev/null 2>&1", $ec); - system("/sbin/losetup -d /dev/loop3 >/dev/null", $ec); - @rmdir("/tmp/iso-mount"); -} -echo "ok\n"; - ---EXPECT-- -Load... ok -Creating VFS... ok -Populating VFS... ok -Creating ISOWriter... ok -Creating ISO Image... ok -Checking ISO Image (if possible)... ok diff --git a/framework/VFS_ISOWriter/tests/outputstrategy.phpt b/framework/VFS_ISOWriter/tests/outputstrategy.phpt deleted file mode 100644 index 352d560b9..000000000 --- a/framework/VFS_ISOWriter/tests/outputstrategy.phpt +++ /dev/null @@ -1,95 +0,0 @@ ---TEST-- -VFS_ISOWriter_RealOutputStrategy:: and drivers ---FILE-- - '/tmp')); - testOutputStrategy($vfs, 'vfs_isowriter_realoutputstrategy_direct'); - } catch (VFS_Exception $e) { - echo "ERROR(1): ", $e->getMessage(), "\n"; - } -} - -function testCopyOutputStrategy() -{ - echo "Testing copy output strategy... "; - - $vfs = new VFS_notfile(array('vfsroot' => '/tmp')); - testOutputStrategy($vfs, 'vfs_isowriter_realoutputstrategy_copy'); -} - -function testOutputStrategy(&$vfs, $expectClass) -{ - $outputStrategy = &VFS_ISOWriter_RealOutputStrategy::factory($vfs, 'foo'); - if (is_a($outputStrategy, 'PEAR_Error')) { - echo "ERROR(2): ", $outputStrategy->getMessage(), "\n"; - return; - } - - if (get_class($outputStrategy) != $expectClass) { - printf("ERROR(3): expected class '%s', got class '%s'.\n", - $expectClass, get_class($outputStrategy)); - return; - } - - $fn = $outputStrategy->getRealFilename(); - if (is_a($fn, 'PEAR_Error')) { - echo "ERROR(4): ", $fn->getMessage(), "\n"; - return; - } - - $fh = @fopen($fn, 'w'); - if (!is_resource($fh)) { - printf("ERROR(5): could not open '%s' for writing.\n", $fn); - return; - } - $data = md5(uniqid('foobar', true)); - fputs($fh, $data); - fclose($fh); - - $res = $outputStrategy->finished(); - if (is_a($res, 'PEAR_Error')) { - echo "ERROR(6): ", $res->getMessage(), "\n"; - return; - } - - try { - $res = $vfs->read('/', 'foo'); - } catch (VFS_Exception $e) { - echo "ERROR(7): ", $e->getMessage(), "\n"; - return; - } - - if ($res != $data) { - printf("ERROR(8): file contents differ ('%s' vs. '%s').", $res, - $data); - return; - } - - echo "ok\n"; -} - ---EXPECT-- -Load... ok -Testing direct output strategy... ok -Testing copy output strategy... ok