+++ /dev/null
-<?php
-/**
- * VFS API for abstracted creation of ISO (CD-ROM) filesystems.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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."));
- }
-
-}
+++ /dev/null
-<?php
-/**
- * Encapsulate strategies for getting a real, local filesystem structure from
- * a VFS.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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;
- }
-
-}
+++ /dev/null
-<?php
-/**
- * Strategy for copying input tree out of a VFS
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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);
- }
- }
- }
- }
-
-}
+++ /dev/null
-<?php
-/**
- * Strategy for directly accessing input tree in a 'file' VFS
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @package VFS_ISO
- */
-class VFS_ISOWriter_RealInputStrategy_direct extends VFS_ISOWriter_RealInputStrategy {
-
- function getRealPath()
- {
- return $this->_sourceVfs->_getNativePath($this->_sourceRoot);
- }
-
- function finished()
- {
- }
-
-}
+++ /dev/null
-<?php
-/**
- * Encapsulate strategies for ability to write output to real file.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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();
-}
+++ /dev/null
-<?php
-/**
- * Strategy for writing file to temporary directory, then copying to VFS.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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;
- }
-
-}
-
+++ /dev/null
-<?php
-/**
- * Strategy for directly writing output file to VFS.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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. */
- }
-
-}
-
+++ /dev/null
-<?php
-/**
- * @package VFS_ISOWriter
- *
- * Copyright 2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- */
-
-/**
- * Horde_VFS_ISOWriter_Translation is the translation wrapper class for Horde_VFS_ISOWriter.
- *
- * @author Jan Schneider <jan@horde.org>
- * @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);
- }
-}
+++ /dev/null
-<?php
-/**
- * Driver for using mkisofs for creating ISO images.
- *
- * Copyright 2004-2010 The Horde Project (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (LGPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
- *
- * @author Jason M. Felice <jason.m.felice@gmail.com>
- * @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;
- }
-
-}
-
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Horde Project
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 <em>unlink</em> \"%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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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"
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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ä."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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。"
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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"
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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"
+++ /dev/null
-# 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."
+++ /dev/null
-# 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 ""
+++ /dev/null
-# 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."
+++ /dev/null
-# 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."
+++ /dev/null
-# 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。"
+++ /dev/null
-# 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."
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<package packagerversion="1.9.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
- <name>VFS_ISOWriter</name>
- <channel>pear.horde.org</channel>
- <summary>Virtual File System ISO-writing API</summary>
- <description>This package provides VFS extensions for writing ISO CD images. It currently has drivers for:
-* mkisofs</description>
- <lead>
- <name>Jason M. Felice</name>
- <user>eraserhd</user>
- <email>jason.m.felice@gmail.com</email>
- <active>yes</active>
- </lead>
- <date>2010-10-22</date>
- <time>19:03:03</time>
- <version>
- <release>0.0.2</release>
- <api>0.0.2</api>
- </version>
- <stability>
- <release>alpha</release>
- <api>alpha</api>
- </stability>
- <license uri="http://www.gnu.org/copyleft/lesser.html">LGPL</license>
- <notes>
-Converted to package.xml 2.0 for pear.horde.org
- </notes>
- <contents>
- <dir baseinstalldir="/VFS" name="/">
- <dir name="ISOWriter">
- <dir name="RealInputStrategy">
- <file name="copy.php" role="php" />
- <file name="direct.php" role="php" />
- </dir> <!-- /ISOWriter/RealInputStrategy -->
- <dir name="RealOutputStrategy">
- <file name="copy.php" role="php" />
- <file name="direct.php" role="php" />
- </dir> <!-- /ISOWriter/RealOutputStrategy -->
- <file name="mkisofs.php" role="php" />
- <file name="RealInputStrategy.php" role="php" />
- <file name="RealOutputStrategy.php" role="php" />
- <file name="Translation.php" role="php">
- <tasks:replace from="@data_dir@" to="data_dir" type="pear-config" />
- </file>
- </dir> <!-- /ISOWriter -->
- <dir name="locale">
- <dir name="ar">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ar/LC_MESSAGES -->
- </dir> <!-- /locale/ar -->
- <dir name="bg">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/bg/LC_MESSAGES -->
- </dir> <!-- /locale/bg -->
- <dir name="bs">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/bs/LC_MESSAGES -->
- </dir> <!-- /locale/bs -->
- <dir name="ca">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ca/LC_MESSAGES -->
- </dir> <!-- /locale/ca -->
- <dir name="cs">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/cs/LC_MESSAGES -->
- </dir> <!-- /locale/cs -->
- <dir name="da">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/da/LC_MESSAGES -->
- </dir> <!-- /locale/da -->
- <dir name="de">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/de/LC_MESSAGES -->
- </dir> <!-- /locale/de -->
- <dir name="el">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/el/LC_MESSAGES -->
- </dir> <!-- /locale/el -->
- <dir name="en">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/en/LC_MESSAGES -->
- </dir> <!-- /locale/en -->
- <dir name="es">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/es/LC_MESSAGES -->
- </dir> <!-- /locale/es -->
- <dir name="et">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/et/LC_MESSAGES -->
- </dir> <!-- /locale/et -->
- <dir name="eu">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/eu/LC_MESSAGES -->
- </dir> <!-- /locale/eu -->
- <dir name="fa">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/fa/LC_MESSAGES -->
- </dir> <!-- /locale/fa -->
- <dir name="fi">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/fi/LC_MESSAGES -->
- </dir> <!-- /locale/fi -->
- <dir name="fr">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/fr/LC_MESSAGES -->
- </dir> <!-- /locale/fr -->
- <dir name="gl">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/gl/LC_MESSAGES -->
- </dir> <!-- /locale/gl -->
- <dir name="he">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/he/LC_MESSAGES -->
- </dir> <!-- /locale/he -->
- <dir name="hr">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/hr/LC_MESSAGES -->
- </dir> <!-- /locale/hr -->
- <dir name="hu">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/hu/LC_MESSAGES -->
- </dir> <!-- /locale/hu -->
- <dir name="id">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/id/LC_MESSAGES -->
- </dir> <!-- /locale/id -->
- <dir name="is">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/is/LC_MESSAGES -->
- </dir> <!-- /locale/is -->
- <dir name="it">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/it/LC_MESSAGES -->
- </dir> <!-- /locale/it -->
- <dir name="ja">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ja/LC_MESSAGES -->
- </dir> <!-- /locale/ja -->
- <dir name="km">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/km/LC_MESSAGES -->
- </dir> <!-- /locale/km -->
- <dir name="ko">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ko/LC_MESSAGES -->
- </dir> <!-- /locale/ko -->
- <dir name="lt">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/lt/LC_MESSAGES -->
- </dir> <!-- /locale/lt -->
- <dir name="lv">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/lv/LC_MESSAGES -->
- </dir> <!-- /locale/lv -->
- <dir name="mk">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/mk/LC_MESSAGES -->
- </dir> <!-- /locale/mk -->
- <dir name="nb">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/nb/LC_MESSAGES -->
- </dir> <!-- /locale/nb -->
- <dir name="nl">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/nl/LC_MESSAGES -->
- </dir> <!-- /locale/nl -->
- <dir name="nn">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/nn/LC_MESSAGES -->
- </dir> <!-- /locale/nn -->
- <dir name="pl">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/pl/LC_MESSAGES -->
- </dir> <!-- /locale/pl -->
- <dir name="pt">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/pt/LC_MESSAGES -->
- </dir> <!-- /locale/pt -->
- <dir name="pt_BR">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/pt_BR/LC_MESSAGES -->
- </dir> <!-- /locale/pt_BR -->
- <dir name="ro">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ro/LC_MESSAGES -->
- </dir> <!-- /locale/ro -->
- <dir name="ru">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/ru/LC_MESSAGES -->
- </dir> <!-- /locale/ru -->
- <dir name="sk">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/sk/LC_MESSAGES -->
- </dir> <!-- /locale/sk -->
- <dir name="sl">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/sl/LC_MESSAGES -->
- </dir> <!-- /locale/sl -->
- <dir name="sv">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/sv/LC_MESSAGES -->
- </dir> <!-- /locale/sv -->
- <dir name="tr">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/tr/LC_MESSAGES -->
- </dir> <!-- /locale/tr -->
- <dir name="uk">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/uk/LC_MESSAGES -->
- </dir> <!-- /locale/uk -->
- <dir name="zh_CN">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/zh_CN/LC_MESSAGES -->
- </dir> <!-- /locale/zh_CN -->
- <dir name="zh_TW">
- <dir name="LC_MESSAGES">
- <file name="Horde_VFS_ISOWriter.mo" role="data" />
- <file name="Horde_VFS_ISOWriter.po" role="data" />
- </dir> <!-- /locale/zh_TW/LC_MESSAGES -->
- </dir> <!-- /locale/zh_TW -->
- <file name="Horde_VFS_ISOWriter.pot" role="data" />
- </dir> <!-- /locale -->
- <dir name="tests">
- <file name="inputstrategy.phpt" role="test" />
- <file name="isowriter.phpt" role="test" />
- <file name="outputstrategy.phpt" role="test" />
- </dir> <!-- /tests -->
- <file name="ISOWriter.php" role="php" />
- </dir> <!-- / -->
- </contents>
- <dependencies>
- <required>
- <php>
- <min>4.2.0</min>
- </php>
- <pearinstaller>
- <min>1.4.0b1</min>
- </pearinstaller>
- <package>
- <name>Translation</name>
- <channel>pear.horde.org</channel>
- </package>
- <package>
- <name>VFS</name>
- <channel>pear.php.net</channel>
- </package>
- </required>
- </dependencies>
- <phprelease>
- <filelist>
- <install as="locale/Horde_VFS_ISOWriter.pot" name="locale/Horde_VFS_ISOWriter.pot" />
- <install as="locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ar/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/bg/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/bs/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ca/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/cs/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/da/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/de/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/el/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/en/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/es/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/et/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/eu/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/fa/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/fi/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/fr/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/gl/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/he/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/hr/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/hu/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/id/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/is/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/it/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ja/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/km/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ko/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/lt/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/lv/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/mk/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/nb/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/nl/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/nn/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/pl/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/pt/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/pt_BR/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ro/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/ru/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/sk/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/sl/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/sv/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/tr/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/uk/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/zh_CN/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- <install as="locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.mo" name="locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.mo" />
- <install as="locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.po" name="locale/zh_TW/LC_MESSAGES/Horde_VFS_ISOWriter.po" />
- </filelist>
- </phprelease>
- <changelog>
- <release>
- <version>
- <release>0.0.1</release>
- <api>0.0.1</api>
- </version>
- <stability>
- <release>alpha</release>
- <api>alpha</api>
- </stability>
- <date>2004-10-06</date>
- <license uri="http://www.gnu.org/copyleft/lesser.html">LGPL</license>
- <notes>
-Initial release as a PEAR package
- </notes>
- </release>
- <release>
- <version>
- <release>0.0.2</release>
- <api>0.0.2</api>
- </version>
- <stability>
- <release>alpha</release>
- <api>alpha</api>
- </stability>
- <date>2010-10-22</date>
- <license uri="http://www.gnu.org/copyleft/lesser.html">LGPL</license>
- <notes>
-Converted to package.xml 2.0 for pear.horde.org
- </notes>
- </release>
- </changelog>
-</package>
+++ /dev/null
---TEST--
-VFS_ISOWriter_RealInputStrategy:: and drivers
---FILE--
-<?php
-
-require_once 'VFS.php';
-require_once 'VFS/file.php';
-require_once dirname(__FILE__) . '/../ISOWriter/RealInputStrategy.php';
-
-/**
- * This class is to make a file driver for VFS which isn't treated as a file
- * driver (strategies detect based on class name).
- */
-class VFS_notfile extends VFS_file {
-}
-
-echo "Load... ok\n";
-
-testDirectInputStrategy();
-testCopyInputStrategy();
-
-function testDirectInputStrategy()
-{
- echo "Testing direct input strategy... ";
-
- $vfs = VFS::factory('file', array('vfsroot' => '/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
+++ /dev/null
---TEST--
-VFS_ISOWriter:: and drivers
---FILE--
-<?php
-
-require_once 'VFS.php';
-require_once dirname(__FILE__) . '/../ISOWriter.php';
-
-echo "Load... ok\n";
-
-echo "Creating VFS... ";
-try {
- $vfs = VFS::factory('file', array('vfsroot' => '/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
+++ /dev/null
---TEST--
-VFS_ISOWriter_RealOutputStrategy:: and drivers
---FILE--
-<?php
-
-require_once 'VFS.php';
-require_once 'VFS/file.php';
-require_once dirname(__FILE__) . '/../ISOWriter/RealOutputStrategy.php';
-
-/**
- * This class is to make a file driver for VFS which isn't treated as a file
- * driver (strategies detect based on class name).
- */
-class VFS_notfile extends VFS_file {
-}
-
-echo "Load... ok\n";
-testDirectOutputStrategy();
-testCopyOutputStrategy();
-
-function testDirectOutputStrategy()
-{
- echo "Testing direct output strategy... ";
-
- try {
- $vfs = VFS::factory('file', array('vfsroot' => '/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