From e928a342c452b49ed84e36d3534bb9715f55845b Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 28 Dec 2012 20:10:01 -0500 Subject: [PATCH 001/215] Check if extra / is necessary for the folder URL --- apps/files/js/fileactions.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index e1d8b60d315..533b11a6e50 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -190,7 +190,11 @@ FileActions.register('all', 'Rename', OC.PERMISSION_UPDATE, function () { FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename) { - window.location = OC.linkTo('files', 'index.php') + '?dir=' + encodeURIComponent($('#dir').val()).replace(/%2F/g, '/') + '/' + encodeURIComponent(filename); + var dir = encodeURIComponent($('#dir').val()).replace(/%2F/g, '/'); + if (dir != '/') { + dir = dir + '/'; + } + window.location = OC.linkTo('files', 'index.php') + '?dir=' + dir + encodeURIComponent(filename); }); FileActions.setDefault('dir', 'Open'); -- GitLab From 855c9480b73d0ea3f6d0562503db5d72f64c14db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Sat, 9 Feb 2013 13:07:44 +0100 Subject: [PATCH 002/215] only encodeURIComponent once --- apps/files/js/fileactions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 533b11a6e50..316acda5133 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -190,11 +190,11 @@ FileActions.register('all', 'Rename', OC.PERMISSION_UPDATE, function () { FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename) { - var dir = encodeURIComponent($('#dir').val()).replace(/%2F/g, '/'); + var dir = $('#dir').val() if (dir != '/') { dir = dir + '/'; } - window.location = OC.linkTo('files', 'index.php') + '?dir=' + dir + encodeURIComponent(filename); + window.location = OC.linkTo('files', 'index.php') + '?dir=' + encodeURIComponent(dir + filename); }); FileActions.setDefault('dir', 'Open'); -- GitLab From c6dbb33e1562ad1748feb3cb931ea5016520b867 Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 13 Apr 2013 14:48:16 +0200 Subject: [PATCH 003/215] Fix textfield label overlapping value. --- core/templates/installation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index c70903cba55..4987e50d1ce 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -162,7 +162,7 @@

+ value="" />

-- GitLab From ba9db1964053be769b42452fee65ac4720489f81 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 19:42:46 +0200 Subject: [PATCH 004/215] Add wrapper storage backend --- lib/files/storage/wrapper.php | 420 ++++++++++++++++++++++++++++ tests/lib/files/storage/wrapper.php | 26 ++ 2 files changed, 446 insertions(+) create mode 100644 lib/files/storage/wrapper.php create mode 100644 tests/lib/files/storage/wrapper.php diff --git a/lib/files/storage/wrapper.php b/lib/files/storage/wrapper.php new file mode 100644 index 00000000000..5939faec562 --- /dev/null +++ b/lib/files/storage/wrapper.php @@ -0,0 +1,420 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +class Wrapper implements Storage { + /** + * @var Storage $storage + */ + protected $storage; + + /** + * @param array $parameters + */ + public function __construct($parameters) { + $this->storage = $parameters['storage']; + } + + /** + * Get the identifier for the storage, + * the returned id should be the same for every storage object that is created with the same parameters + * and two storage objects with the same id should refer to two storages that display the same files. + * + * @return string + */ + public function getId() { + return $this->storage->getId(); + } + + /** + * see http://php.net/manual/en/function.mkdir.php + * + * @param string $path + * @return bool + */ + public function mkdir($path) { + return $this->storage->mkdir($path); + } + + /** + * see http://php.net/manual/en/function.rmdir.php + * + * @param string $path + * @return bool + */ + public function rmdir($path) { + return $this->storage->rmdir($path); + } + + /** + * see http://php.net/manual/en/function.opendir.php + * + * @param string $path + * @return resource + */ + public function opendir($path) { + return $this->storage->opendir($path); + } + + /** + * see http://php.net/manual/en/function.is_dir.php + * + * @param string $path + * @return bool + */ + public function is_dir($path) { + return $this->storage->is_dir($path); + } + + /** + * see http://php.net/manual/en/function.is_file.php + * + * @param string $path + * @return bool + */ + public function is_file($path) { + return $this->storage->is_file($path); + } + + /** + * see http://php.net/manual/en/function.stat.php + * only the following keys are required in the result: size and mtime + * + * @param string $path + * @return array + */ + public function stat($path) { + return $this->storage->stat($path); + } + + /** + * see http://php.net/manual/en/function.filetype.php + * + * @param string $path + * @return bool + */ + public function filetype($path) { + return $this->storage->filetype($path); + } + + /** + * see http://php.net/manual/en/function.filesize.php + * The result for filesize when called on a folder is required to be 0 + * + * @param string $path + * @return int + */ + public function filesize($path) { + return $this->storage->filesize($path); + } + + /** + * check if a file can be created in $path + * + * @param string $path + * @return bool + */ + public function isCreatable($path) { + return $this->storage->isCreatable($path); + } + + /** + * check if a file can be read + * + * @param string $path + * @return bool + */ + public function isReadable($path) { + return $this->storage->isReadable($path); + } + + /** + * check if a file can be written to + * + * @param string $path + * @return bool + */ + public function isUpdatable($path) { + return $this->storage->isUpdatable($path); + } + + /** + * check if a file can be deleted + * + * @param string $path + * @return bool + */ + public function isDeletable($path) { + return $this->storage->isDeletable($path); + } + + /** + * check if a file can be shared + * + * @param string $path + * @return bool + */ + public function isSharable($path) { + return $this->storage->isSharable($path); + } + + /** + * get the full permissions of a path. + * Should return a combination of the PERMISSION_ constants defined in lib/public/constants.php + * + * @param string $path + * @return int + */ + public function getPermissions($path) { + return $this->storage->getPermissions($path); + } + + /** + * see http://php.net/manual/en/function.file_exists.php + * + * @param string $path + * @return bool + */ + public function file_exists($path) { + return $this->storage->file_exists($path); + } + + /** + * see http://php.net/manual/en/function.filemtime.php + * + * @param string $path + * @return int + */ + public function filemtime($path) { + return $this->storage->filemtime($path); + } + + /** + * see http://php.net/manual/en/function.file_get_contents.php + * + * @param string $path + * @return string + */ + public function file_get_contents($path) { + return $this->storage->file_get_contents($path); + } + + /** + * see http://php.net/manual/en/function.file_put_contents.php + * + * @param string $path + * @param string $data + * @return bool + */ + public function file_put_contents($path, $data) { + return $this->storage->file_put_contents($path, $data); + } + + /** + * see http://php.net/manual/en/function.unlink.php + * + * @param string $path + * @return bool + */ + public function unlink($path) { + return $this->storage->unlink($path); + } + + /** + * see http://php.net/manual/en/function.rename.php + * + * @param string $path1 + * @param string $path2 + * @return bool + */ + public function rename($path1, $path2) { + return $this->storage->rename($path1, $path2); + } + + /** + * see http://php.net/manual/en/function.copy.php + * + * @param string $path1 + * @param string $path2 + * @return bool + */ + public function copy($path1, $path2) { + return $this->storage->copy($path1, $path2); + } + + /** + * see http://php.net/manual/en/function.fopen.php + * + * @param string $path + * @param string $mode + * @return resource + */ + public function fopen($path, $mode) { + return $this->storage->fopen($path, $mode); + } + + /** + * get the mimetype for a file or folder + * The mimetype for a folder is required to be "httpd/unix-directory" + * + * @param string $path + * @return string + */ + public function getMimeType($path) { + return $this->storage->getMimeType($path); + } + + /** + * see http://php.net/manual/en/function.hash.php + * + * @param string $type + * @param string $path + * @param bool $raw + * @return string + */ + public function hash($type, $path, $raw = false) { + return $this->storage->hash($type, $path, $raw); + } + + /** + * see http://php.net/manual/en/function.free_space.php + * + * @param string $path + * @return int + */ + public function free_space($path) { + return $this->storage->free_space($path); + } + + /** + * search for occurrences of $query in file names + * + * @param string $query + * @return array + */ + public function search($query) { + return $this->storage->search($query); + } + + /** + * see http://php.net/manual/en/function.touch.php + * If the backend does not support the operation, false should be returned + * + * @param string $path + * @param int $mtime + * @return bool + */ + public function touch($path, $mtime = null) { + return $this->storage->touch($path, $mtime); + } + + /** + * get the path to a local version of the file. + * The local version of the file can be temporary and doesn't have to be persistent across requests + * + * @param string $path + * @return string + */ + public function getLocalFile($path) { + return $this->storage->getLocalFile($path); + } + + /** + * get the path to a local version of the folder. + * The local version of the folder can be temporary and doesn't have to be persistent across requests + * + * @param string $path + * @return string + */ + public function getLocalFolder($path) { + return $this->storage->getLocalFolder($path); + } + + /** + * check if a file or folder has been updated since $time + * + * @param string $path + * @param int $time + * @return bool + * + * hasUpdated for folders should return at least true if a file inside the folder is add, removed or renamed. + * returning true for other changes in the folder is optional + */ + public function hasUpdated($path, $time) { + return $this->storage->hasUpdated($path, $time); + } + + /** + * get a cache instance for the storage + * + * @param string $path + * @return \OC\Files\Cache\Cache + */ + public function getCache($path = '') { + return $this->storage->getCache($path); + } + + /** + * get a scanner instance for the storage + * + * @param string $path + * @return \OC\Files\Cache\Scanner + */ + public function getScanner($path = '') { + return $this->storage->getScanner($path); + } + + + /** + * get the user id of the owner of a file or folder + * + * @param string $path + * @return string + */ + public function getOwner($path) { + return $this->storage->getOwner($path); + } + + /** + * get a permissions cache instance for the cache + * + * @param string $path + * @return \OC\Files\Cache\Permissions + */ + public function getPermissionsCache($path = '') { + return $this->storage->getPermissions($path); + } + + /** + * get a watcher instance for the cache + * + * @param string $path + * @return \OC\Files\Cache\Watcher + */ + public function getWatcher($path = '') { + return $this->storage->getWatcher($path); + } + + /** + * @return \OC\Files\Cache\Storage + */ + public function getStorageCache() { + return $this->storage->getStorageCache(); + } + + /** + * get the ETag for a file or folder + * + * @param string $path + * @return string + */ + public function getETag($path) { + return $this->storage->getETag($path); + } +} diff --git a/tests/lib/files/storage/wrapper.php b/tests/lib/files/storage/wrapper.php new file mode 100644 index 00000000000..8452949a723 --- /dev/null +++ b/tests/lib/files/storage/wrapper.php @@ -0,0 +1,26 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Storage; + +class Wrapper extends Storage { + /** + * @var string tmpDir + */ + private $tmpDir; + + public function setUp() { + $this->tmpDir = \OC_Helper::tmpFolder(); + $storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir)); + $this->instance = new \OC\Files\Storage\Wrapper(array('storage' => $storage)); + } + + public function tearDown() { + \OC_Helper::rmdirr($this->tmpDir); + } +} -- GitLab From d97ef0805ba5c5687e0642bb8f7c085966153ac9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 8 May 2013 22:35:10 +0200 Subject: [PATCH 005/215] Add mechanism to allow apps to wraper storage classes --- lib/files/mount/mount.php | 26 +++++++++++++++++++++++++- lib/files/storage/loader.php | 17 +++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 lib/files/storage/loader.php diff --git a/lib/files/mount/mount.php b/lib/files/mount/mount.php index 69b8285ab4c..d25a7b3be6e 100644 --- a/lib/files/mount/mount.php +++ b/lib/files/mount/mount.php @@ -22,6 +22,11 @@ class Mount { private $arguments = array(); private $mountPoint; + /** + * @var callable[] $storageWrappers + */ + private $storageWrappers = array(); + /** * @param string|\OC\Files\Storage\Storage $storage * @param string $mountpoint @@ -62,7 +67,7 @@ class Mount { private function createStorage() { if (class_exists($this->class)) { try { - return new $this->class($this->arguments); + return $this->loadStorage($this->class, $this->arguments); } catch (\Exception $exception) { \OC_Log::write('core', $exception->getMessage(), \OC_Log::ERROR); return null; @@ -73,6 +78,25 @@ class Mount { } } + /** + * allow modifier storage behaviour by adding wrappers around storages + * + * $callback should be a function of type (string $mountPoint, Storage $storage) => Storage + * + * @param callable $callback + */ + public function addStorageWrapper($callback) { + $this->storageWrappers[] = $callback; + } + + private function loadStorage($class, $arguments) { + $storage = new $class($arguments); + foreach ($this->storageWrappers as $wrapper) { + $storage = $wrapper($this->mountPoint, $storage); + } + return $storage; + } + /** * @return \OC\Files\Storage\Storage */ diff --git a/lib/files/storage/loader.php b/lib/files/storage/loader.php new file mode 100644 index 00000000000..7330cae4cc4 --- /dev/null +++ b/lib/files/storage/loader.php @@ -0,0 +1,17 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +class Loader { + private function $wrappers + + public function load($class, $arguments) { + return new $class($arguments); + } +} -- GitLab From b41999a2c0628f3241b07afcae0b29bae682583c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 9 Mar 2013 21:00:48 +0100 Subject: [PATCH 006/215] Implement OC\Log as proxy to OC_Log OC\Log implements the Psr\Log\LoggerInterface interface. See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md for the full interface specification. --- lib/legacy/log.php | 72 ++++++++++++++++++++ lib/log.php | 165 ++++++++++++++++++++++++++++++++++----------- 2 files changed, 199 insertions(+), 38 deletions(-) create mode 100644 lib/legacy/log.php diff --git a/lib/legacy/log.php b/lib/legacy/log.php new file mode 100644 index 00000000000..4e6642b6a2f --- /dev/null +++ b/lib/legacy/log.php @@ -0,0 +1,72 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * logging utilities + * + * Log is saved by default at data/owncloud.log using OC_Log_Owncloud. + * Selecting other backend is done with a config option 'log_type'. + */ + +OC_Log::$object = new \OC\Log(); +class OC_Log { + public static $object; + + const DEBUG=0; + const INFO=1; + const WARN=2; + const ERROR=3; + const FATAL=4; + + static public $enabled = true; + static protected $class = null; + + /** + * write a message in the log + * @param string $app + * @param string $message + * @param int level + */ + public static function write($app, $message, $level) { + if (self::$enabled) { + if (!self::$class) { + self::$class = 'OC_Log_'.ucfirst(OC_Config::getValue('log_type', 'owncloud')); + call_user_func(array(self::$class, 'init')); + } + $log_class=self::$class; + $log_class::write($app, $message, $level); + } + } + + //Fatal errors handler + public static function onShutdown() { + $error = error_get_last(); + if($error) { + //ob_end_clean(); + self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); + } else { + return true; + } + } + + // Uncaught exception handler + public static function onException($exception) { + self::write('PHP', + $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), + self::FATAL); + } + + //Recoverable errors handler + public static function onError($number, $message, $file, $line) { + if (error_reporting() === 0) { + return; + } + self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); + + } +} diff --git a/lib/log.php b/lib/log.php index 3f3334801e5..f7a68c30680 100644 --- a/lib/log.php +++ b/lib/log.php @@ -1,69 +1,158 @@ + * Copyright (c) 2013 Bart Visscher * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ +namespace OC; + /** * logging utilities * - * Log is saved by default at data/owncloud.log using OC_Log_Owncloud. - * Selecting other backend is done with a config option 'log_type'. + * This is a stand in, this should be replaced by a Psr\Log\LoggerInterface + * compatible logger. See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md + * for the full interface specification. + * + * MonoLog is an example implementing this interface. */ -class OC_Log { +class Log { const DEBUG=0; const INFO=1; const WARN=2; const ERROR=3; const FATAL=4; - static public $enabled = true; - static protected $class = null; + const NOTICE=5; + const CRITICAL=6; + const ALERT=7; /** - * write a message in the log - * @param string $app + * System is unusable. + * * @param string $message - * @param int level + * @param array $context + * @return null */ - public static function write($app, $message, $level) { - if (self::$enabled) { - if (!self::$class) { - self::$class = 'OC_Log_'.ucfirst(OC_Config::getValue('log_type', 'owncloud')); - call_user_func(array(self::$class, 'init')); - } - $log_class=self::$class; - $log_class::write($app, $message, $level); - } + public function emergency($message, array $context = array()) + { + $this->log(OC_Log::FATAL, $message, $context); } - //Fatal errors handler - public static function onShutdown() { - $error = error_get_last(); - if($error) { - //ob_end_clean(); - self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); - } else { - return true; - } + /** + * Action must be taken immediately. + * + * Example: Entire website down, database unavailable, etc. This should + * trigger the SMS alerts and wake you up. + * + * @param string $message + * @param array $context + * @return null + */ + public function alert($message, array $context = array()) + { + $this->log(self::ALERT, $message, $context); } - // Uncaught exception handler - public static function onException($exception) { - self::write('PHP', - $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), - self::FATAL); + /** + * Critical conditions. + * + * Example: Application component unavailable, unexpected exception. + * + * @param string $message + * @param array $context + * @return null + */ + public function critical($message, array $context = array()) + { + $this->log(self::CRITICAL, $message, $context); } - //Recoverable errors handler - public static function onError($number, $message, $file, $line) { - if (error_reporting() === 0) { - return; - } - self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); + /** + * Runtime errors that do not require immediate action but should typically + * be logged and monitored. + * + * @param string $message + * @param array $context + * @return null + */ + public function error($message, array $context = array()) + { + $this->log(OC_Log::ERROR, $message, $context); + } + + /** + * Exceptional occurrences that are not errors. + * + * Example: Use of deprecated APIs, poor use of an API, undesirable things + * that are not necessarily wrong. + * + * @param string $message + * @param array $context + * @return null + */ + public function warning($message, array $context = array()) + { + $this->log(OC_Log::WARN, $message, $context); + } + /** + * Normal but significant events. + * + * @param string $message + * @param array $context + * @return null + */ + public function notice($message, array $context = array()) + { + $this->log(self::NOTICE, $message, $context); + } + + /** + * Interesting events. + * + * Example: User logs in, SQL logs. + * + * @param string $message + * @param array $context + * @return null + */ + public function info($message, array $context = array()) + { + $this->log(OC_Log::INFO, $message, $context); + } + + /** + * Detailed debug information. + * + * @param string $message + * @param array $context + * @return null + */ + public function debug($message, array $context = array()) + { + $this->log(OC_Log::DEBUG, $message, $context); + } + + /** + * Logs with an arbitrary level. + * + * @param mixed $level + * @param string $message + * @param array $context + * @return null + */ + protected function log($level, $message, array $context = array()) + { + if (isset($context['app'])) { + $app = $context['app']; + } else { + $app = 'no app in context'; + } + OC_Log::write($app, $message, $level); } } + +require_once __DIR__.'/legacy/'.basename(__FILE__); -- GitLab From 7e5bb96027ee4409d8883afffa2cad50cdc3c782 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 20 Mar 2013 17:36:57 +0100 Subject: [PATCH 007/215] Fix OC\Log with OC_Log in wrong namespace --- lib/log.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/log.php b/lib/log.php index f7a68c30680..6353693a289 100644 --- a/lib/log.php +++ b/lib/log.php @@ -38,7 +38,7 @@ class Log { */ public function emergency($message, array $context = array()) { - $this->log(OC_Log::FATAL, $message, $context); + $this->log(self::FATAL, $message, $context); } /** @@ -80,7 +80,7 @@ class Log { */ public function error($message, array $context = array()) { - $this->log(OC_Log::ERROR, $message, $context); + $this->log(self::ERROR, $message, $context); } /** @@ -95,7 +95,7 @@ class Log { */ public function warning($message, array $context = array()) { - $this->log(OC_Log::WARN, $message, $context); + $this->log(self::WARN, $message, $context); } /** @@ -121,7 +121,7 @@ class Log { */ public function info($message, array $context = array()) { - $this->log(OC_Log::INFO, $message, $context); + $this->log(self::INFO, $message, $context); } /** @@ -133,7 +133,7 @@ class Log { */ public function debug($message, array $context = array()) { - $this->log(OC_Log::DEBUG, $message, $context); + $this->log(self::DEBUG, $message, $context); } /** @@ -151,7 +151,7 @@ class Log { } else { $app = 'no app in context'; } - OC_Log::write($app, $message, $level); + \OC_Log::write($app, $message, $level); } } -- GitLab From 0b4018e7ff5f2660850338e8ea0aaab57c48209e Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 8 May 2013 18:21:07 +0200 Subject: [PATCH 008/215] Remove include for loading legacy class --- lib/log.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/log.php b/lib/log.php index 6353693a289..d83f88c1df8 100644 --- a/lib/log.php +++ b/lib/log.php @@ -154,5 +154,3 @@ class Log { \OC_Log::write($app, $message, $level); } } - -require_once __DIR__.'/legacy/'.basename(__FILE__); -- GitLab From 31ad43f9221899b2379b3b72e43270b17fa9f881 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 13 May 2013 08:05:53 +0200 Subject: [PATCH 009/215] Code style --- lib/log.php | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/lib/log.php b/lib/log.php index d83f88c1df8..3bedcd4ed36 100644 --- a/lib/log.php +++ b/lib/log.php @@ -36,8 +36,7 @@ class Log { * @param array $context * @return null */ - public function emergency($message, array $context = array()) - { + public function emergency($message, array $context = array()) { $this->log(self::FATAL, $message, $context); } @@ -51,8 +50,7 @@ class Log { * @param array $context * @return null */ - public function alert($message, array $context = array()) - { + public function alert($message, array $context = array()) { $this->log(self::ALERT, $message, $context); } @@ -65,8 +63,7 @@ class Log { * @param array $context * @return null */ - public function critical($message, array $context = array()) - { + public function critical($message, array $context = array()) { $this->log(self::CRITICAL, $message, $context); } @@ -78,8 +75,7 @@ class Log { * @param array $context * @return null */ - public function error($message, array $context = array()) - { + public function error($message, array $context = array()) { $this->log(self::ERROR, $message, $context); } @@ -93,8 +89,7 @@ class Log { * @param array $context * @return null */ - public function warning($message, array $context = array()) - { + public function warning($message, array $context = array()) { $this->log(self::WARN, $message, $context); } @@ -105,8 +100,7 @@ class Log { * @param array $context * @return null */ - public function notice($message, array $context = array()) - { + public function notice($message, array $context = array()) { $this->log(self::NOTICE, $message, $context); } @@ -119,8 +113,7 @@ class Log { * @param array $context * @return null */ - public function info($message, array $context = array()) - { + public function info($message, array $context = array()) { $this->log(self::INFO, $message, $context); } @@ -131,8 +124,7 @@ class Log { * @param array $context * @return null */ - public function debug($message, array $context = array()) - { + public function debug($message, array $context = array()) { $this->log(self::DEBUG, $message, $context); } @@ -144,8 +136,7 @@ class Log { * @param array $context * @return null */ - protected function log($level, $message, array $context = array()) - { + protected function log($level, $message, array $context = array()) { if (isset($context['app'])) { $app = $context['app']; } else { -- GitLab From 061fb79e5c26ec1cf3432dda8c439a167bfc4e1d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 13 May 2013 08:13:31 +0200 Subject: [PATCH 010/215] Use the constants from OC_Log --- lib/log.php | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/lib/log.php b/lib/log.php index 3bedcd4ed36..fc190f1378b 100644 --- a/lib/log.php +++ b/lib/log.php @@ -19,12 +19,6 @@ namespace OC; */ class Log { - const DEBUG=0; - const INFO=1; - const WARN=2; - const ERROR=3; - const FATAL=4; - const NOTICE=5; const CRITICAL=6; const ALERT=7; @@ -37,7 +31,7 @@ class Log { * @return null */ public function emergency($message, array $context = array()) { - $this->log(self::FATAL, $message, $context); + $this->log(\OC_Log::FATAL, $message, $context); } /** @@ -76,7 +70,7 @@ class Log { * @return null */ public function error($message, array $context = array()) { - $this->log(self::ERROR, $message, $context); + $this->log(\OC_Log::ERROR, $message, $context); } /** @@ -90,7 +84,7 @@ class Log { * @return null */ public function warning($message, array $context = array()) { - $this->log(self::WARN, $message, $context); + $this->log(\OC_Log::WARN, $message, $context); } /** @@ -114,7 +108,7 @@ class Log { * @return null */ public function info($message, array $context = array()) { - $this->log(self::INFO, $message, $context); + $this->log(\OC_Log::INFO, $message, $context); } /** @@ -125,7 +119,7 @@ class Log { * @return null */ public function debug($message, array $context = array()) { - $this->log(self::DEBUG, $message, $context); + $this->log(\OC_Log::DEBUG, $message, $context); } /** -- GitLab From 009e9559f3a12d7275ab242ececaa7f9452165c1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 13 May 2013 08:16:41 +0200 Subject: [PATCH 011/215] Remove default return hint --- lib/log.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/log.php b/lib/log.php index fc190f1378b..442872af9c4 100644 --- a/lib/log.php +++ b/lib/log.php @@ -28,7 +28,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function emergency($message, array $context = array()) { $this->log(\OC_Log::FATAL, $message, $context); @@ -42,7 +41,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function alert($message, array $context = array()) { $this->log(self::ALERT, $message, $context); @@ -55,7 +53,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function critical($message, array $context = array()) { $this->log(self::CRITICAL, $message, $context); @@ -67,7 +64,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function error($message, array $context = array()) { $this->log(\OC_Log::ERROR, $message, $context); @@ -81,7 +77,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function warning($message, array $context = array()) { $this->log(\OC_Log::WARN, $message, $context); @@ -92,7 +87,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function notice($message, array $context = array()) { $this->log(self::NOTICE, $message, $context); @@ -105,7 +99,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function info($message, array $context = array()) { $this->log(\OC_Log::INFO, $message, $context); @@ -116,7 +109,6 @@ class Log { * * @param string $message * @param array $context - * @return null */ public function debug($message, array $context = array()) { $this->log(\OC_Log::DEBUG, $message, $context); @@ -128,7 +120,6 @@ class Log { * @param mixed $level * @param string $message * @param array $context - * @return null */ protected function log($level, $message, array $context = array()) { if (isset($context['app'])) { -- GitLab From 1d799f22c1a8cec5a8dd45a0fdd182c011a6f5f0 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 28 May 2013 17:34:57 +0200 Subject: [PATCH 012/215] Default to localhost, if nothing is entered. --- lib/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index 7082f0b2afd..b0af0620527 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -61,7 +61,7 @@ class OC_Setup { $error[] = $l->t("%s you may not use dots in the database name", array($dbprettyname)); } if($dbtype != 'oci' && empty($options['dbhost'])) { - $error[] = $l->t("%s set the database host.", array($dbprettyname)); + $options['dbhost'] = 'localhost'; } } -- GitLab From 3fe46706aff12995a49f5b69d0ea3645dae6de7c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 2 Jun 2013 19:53:18 +0200 Subject: [PATCH 013/215] Update to jquery.multiselect 1.13 --- core/js/jquery.multiselect.js | 153 ++++++++++++++++++++++------------ 1 file changed, 100 insertions(+), 53 deletions(-) diff --git a/core/js/jquery.multiselect.js b/core/js/jquery.multiselect.js index 46aab7ebf01..16ae4264177 100644 --- a/core/js/jquery.multiselect.js +++ b/core/js/jquery.multiselect.js @@ -1,6 +1,7 @@ +/* jshint forin:true, noarg:true, noempty:true, eqeqeq:true, boss:true, undef:true, curly:true, browser:true, jquery:true */ /* - * jQuery MultiSelect UI Widget 1.11 - * Copyright (c) 2011 Eric Hynds + * jQuery MultiSelect UI Widget 1.13 + * Copyright (c) 2012 Eric Hynds * * http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/ * @@ -34,8 +35,8 @@ $.widget("ech.multiselect", { noneSelectedText: 'Select options', selectedText: '# selected', selectedList: 0, - show: '', - hide: '', + show: null, + hide: null, autoOpen: false, multiple: true, position: {} @@ -62,7 +63,7 @@ $.widget("ech.multiselect", { menu = (this.menu = $('
')) .addClass('ui-multiselect-menu ui-widget ui-widget-content ui-corner-all') .addClass( o.classes ) - .insertAfter( button ), + .appendTo( document.body ), header = (this.header = $('
')) .addClass('ui-widget-header ui-corner-all ui-multiselect-header ui-helper-clearfix') @@ -119,70 +120,72 @@ $.widget("ech.multiselect", { menu = this.menu, checkboxContainer = this.checkboxContainer, optgroups = [], - html = [], + html = "", id = el.attr('id') || multiselectID++; // unique ID for the label & option tags // build items - this.element.find('option').each(function( i ){ + el.find('option').each(function( i ){ var $this = $(this), parent = this.parentNode, title = this.innerHTML, description = this.title, value = this.value, - inputID = this.id || 'ui-multiselect-'+id+'-option-'+i, + inputID = 'ui-multiselect-' + (this.id || id + '-option-' + i), isDisabled = this.disabled, isSelected = this.selected, - labelClasses = ['ui-corner-all'], + labelClasses = [ 'ui-corner-all' ], + liClasses = (isDisabled ? 'ui-multiselect-disabled ' : ' ') + this.className, optLabel; // is this an optgroup? - if( parent.tagName.toLowerCase() === 'optgroup' ){ - optLabel = parent.getAttribute('label'); + if( parent.tagName === 'OPTGROUP' ){ + optLabel = parent.getAttribute( 'label' ); // has this optgroup been added already? if( $.inArray(optLabel, optgroups) === -1 ){ - html.push('
  • ' + optLabel + '
  • '); + html += '
  • ' + optLabel + '
  • '; optgroups.push( optLabel ); } } if( isDisabled ){ - labelClasses.push('ui-state-disabled'); + labelClasses.push( 'ui-state-disabled' ); } // browsers automatically select the first option // by default with single selects if( isSelected && !o.multiple ){ - labelClasses.push('ui-state-active'); + labelClasses.push( 'ui-state-active' ); } - html.push('
  • '); + html += '
  • '; // create the label - html.push('
  • '); + html += ' />' + title + ''; }); // insert into the DOM - checkboxContainer.html( html.join('') ); + checkboxContainer.html( html ); // cache some moar useful elements this.labels = menu.find('label'); + this.inputs = this.labels.children('input'); // set widths this._setButtonWidth(); @@ -197,10 +200,10 @@ $.widget("ech.multiselect", { } }, - // updates the button text. call refresh() to rebuild + // updates the button text. call refresh() to rebuild update: function(){ var o = this.options, - $inputs = this.labels.find('input'), + $inputs = this.inputs, $checked = $inputs.filter(':checked'), numChecked = $checked.length, value; @@ -211,7 +214,7 @@ $.widget("ech.multiselect", { if($.isFunction( o.selectedText )){ value = o.selectedText.call(this, numChecked, $inputs.length, $checked.get()); } else if( /\d/.test(o.selectedList) && o.selectedList > 0 && numChecked <= o.selectedList){ - value = $checked.map(function(){ return this.title; }).get().join(', '); + value = $checked.map(function(){ return $(this).next().html(); }).get().join(', '); } else { value = o.selectedText.replace('#', numChecked).replace('#', $inputs.length); } @@ -291,8 +294,8 @@ $.widget("ech.multiselect", { var $this = $(this), $inputs = $this.parent().nextUntil('li.ui-multiselect-optgroup-label').find('input:visible:not(:disabled)'), - nodes = $inputs.get(), - label = $this.parent().text(); + nodes = $inputs.get(), + label = $this.parent().text(); // trigger event and bail if the return is false if( self._trigger('beforeoptgrouptoggle', e, { inputs:nodes, label:label }) === false ){ @@ -343,11 +346,15 @@ $.widget("ech.multiselect", { tags = self.element.find('option'); // bail if this input is disabled or the event is cancelled - if( this.disabled || self._trigger('click', e, { value:val, text:this.title, checked:checked }) === false ){ + if( this.disabled || self._trigger('click', e, { value: val, text: this.title, checked: checked }) === false ){ e.preventDefault(); return; } + // make sure the input has focus. otherwise, the esc key + // won't close the menu after clicking an item. + $this.focus(); + // toggle aria state $this.attr('aria-selected', checked); @@ -389,7 +396,7 @@ $.widget("ech.multiselect", { // handler fires before the form is actually reset. delaying it a bit // gives the form inputs time to clear. $(this.element[0].form).bind('reset.multiselect', function(){ - setTimeout(function(){ self.update(); }, 10); + setTimeout($.proxy(self.refresh, self), 10); }); }, @@ -428,7 +435,7 @@ $.widget("ech.multiselect", { // if at the first/last element if( !$next.length ){ - var $container = this.menu.find('ul:last'); + var $container = this.menu.find('ul').last(); // move to the first/last this.menu.find('label')[ moveToLast ? 'last' : 'first' ]().trigger('mouseover'); @@ -445,27 +452,29 @@ $.widget("ech.multiselect", { // other related attributes of a checkbox. // // The context of this function should be a checkbox; do not proxy it. - _toggleCheckbox: function( prop, flag ){ + _toggleState: function( prop, flag ){ return function(){ - !this.disabled && (this[ prop ] = flag); + if( !this.disabled ) { + this[ prop ] = flag; + } if( flag ){ this.setAttribute('aria-selected', true); } else { this.removeAttribute('aria-selected'); } - } + }; }, _toggleChecked: function( flag, group ){ - var $inputs = (group && group.length) ? - group : - this.labels.find('input'), - + var $inputs = (group && group.length) ? group : this.inputs, self = this; // toggle state on inputs - $inputs.each(this._toggleCheckbox('checked', flag)); + $inputs.each(this._toggleState('checked', flag)); + + // give the first input focus + $inputs.eq(0).focus(); // update button text this.update(); @@ -480,7 +489,7 @@ $.widget("ech.multiselect", { .find('option') .each(function(){ if( !this.disabled && $.inArray(this.value, values) > -1 ){ - self._toggleCheckbox('selected', flag).call( this ); + self._toggleState('selected', flag).call( this ); } }); @@ -494,9 +503,22 @@ $.widget("ech.multiselect", { this.button .attr({ 'disabled':flag, 'aria-disabled':flag })[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); - this.menu - .find('input') - .attr({ 'disabled':flag, 'aria-disabled':flag }) + var inputs = this.menu.find('input'); + var key = "ech-multiselect-disabled"; + + if(flag) { + // remember which elements this widget disabled (not pre-disabled) + // elements, so that they can be restored if the widget is re-enabled. + inputs = inputs.filter(':enabled') + .data(key, true) + } else { + inputs = inputs.filter(function() { + return $.data(this, key) === true; + }).removeData(key); + } + + inputs + .attr({ 'disabled':flag, 'arial-disabled':flag }) .parent()[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); this.element @@ -509,16 +531,17 @@ $.widget("ech.multiselect", { button = this.button, menu = this.menu, speed = this.speed, - o = this.options; + o = this.options, + args = []; // bail if the multiselectopen event returns false, this widget is disabled, or is already open if( this._trigger('beforeopen') === false || button.hasClass('ui-state-disabled') || this._isOpen ){ return; } - var $container = menu.find('ul:last'), + var $container = menu.find('ul').last(), effect = o.show, - pos = button.position(); + pos = button.offset(); // figure out opening effects/speeds if( $.isArray(o.show) ){ @@ -526,6 +549,12 @@ $.widget("ech.multiselect", { speed = o.show[1] || self.speed; } + // if there's an effect, assume jQuery UI is in use + // build the arguments to pass to show() + if( effect ) { + args = [ effect, speed ]; + } + // set the scroll of the checkbox container $container.scrollTop(0).height(o.height); @@ -536,17 +565,19 @@ $.widget("ech.multiselect", { menu .show() .position( o.position ) - .hide() - .show( effect, speed ); + .hide(); // if position utility is not available... } else { menu.css({ - top: pos.top+button.outerHeight(), + top: pos.top + button.outerHeight(), left: pos.left - }).show( effect, speed ); + }); } + // show the menu, maybe with a speed/effect combo + $.fn.show.apply(menu, args); + // select the first option // triggering both mouseover and mouseover because 1.4.2+ has a bug where triggering mouseover // will actually trigger mouseenter. the mouseenter trigger is there for when it's eventually fixed @@ -563,7 +594,10 @@ $.widget("ech.multiselect", { return; } - var o = this.options, effect = o.hide, speed = this.speed; + var o = this.options, + effect = o.hide, + speed = this.speed, + args = []; // figure out opening effects/speeds if( $.isArray(o.hide) ){ @@ -571,7 +605,11 @@ $.widget("ech.multiselect", { speed = o.hide[1] || this.speed; } - this.menu.hide(effect, speed); + if( effect ) { + args = [ effect, speed ]; + } + + $.fn.hide.apply(this.menu, args); this.button.removeClass('ui-state-active').trigger('blur').trigger('mouseleave'); this._isOpen = false; this._trigger('close'); @@ -618,6 +656,10 @@ $.widget("ech.multiselect", { return this.menu; }, + getButton: function(){ + return this.button; + }, + // react to option changes after initialization _setOption: function( key, value ){ var menu = this.menu; @@ -633,7 +675,7 @@ $.widget("ech.multiselect", { menu.find('a.ui-multiselect-none span').eq(-1).text(value); break; case 'height': - menu.find('ul:last').height( parseInt(value,10) ); + menu.find('ul').last().height( parseInt(value,10) ); break; case 'minWidth': this.options[ key ] = parseInt(value,10); @@ -649,6 +691,11 @@ $.widget("ech.multiselect", { case 'classes': menu.add(this.button).removeClass(this.options.classes).addClass(value); break; + case 'multiple': + menu.toggleClass('ui-multiselect-single', !value); + this.options.multiple = value; + this.element[0].multiple = value; + this.refresh(); } $.Widget.prototype._setOption.apply( this, arguments ); -- GitLab From 861fe54f2b33f41b83cf5e714efca72d18ad1b3f Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 4 Jun 2013 00:19:42 +0200 Subject: [PATCH 014/215] Forgot the css. --- core/css/jquery.multiselect.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/jquery.multiselect.css b/core/css/jquery.multiselect.css index 156799f0869..898786a6157 100644 --- a/core/css/jquery.multiselect.css +++ b/core/css/jquery.multiselect.css @@ -11,7 +11,7 @@ .ui-multiselect-header span.ui-icon { float:left } .ui-multiselect-header li.ui-multiselect-close { float:right; text-align:right; padding-right:0 } -.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000 } +.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000; text-align: left } .ui-multiselect-checkboxes { position:relative /* fixes bug in IE6/7 */; overflow-y:scroll } .ui-multiselect-checkboxes label { cursor:default; display:block; border:1px solid transparent; padding:3px 1px } .ui-multiselect-checkboxes label input { position:relative; top:1px } -- GitLab From bd675124096707a925faac2774516975ec7049c1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 17:07:13 +0200 Subject: [PATCH 015/215] manage creating and wrapping storages in it's own class --- lib/files/filesystem.php | 11 +++++++-- lib/files/mount/mount.php | 45 +++++++++++++----------------------- lib/files/storage/loader.php | 27 +++++++++++++++++++--- 3 files changed, 49 insertions(+), 34 deletions(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index eadd8a93faf..ce89c5c23ff 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -30,6 +30,7 @@ namespace OC\Files; +use OC\Files\Storage\Loader; const FREE_SPACE_UNKNOWN = -2; const FREE_SPACE_UNLIMITED = -3; @@ -142,6 +143,11 @@ class Filesystem { */ const signal_param_run = 'run'; + /** + * @var \OC\Files\Storage\Loader $loader + */ + private static $loader; + /** * get the mountpoint of the storage object for a path * ( note: because a storage is not always mounted inside the fakeroot, the @@ -221,6 +227,7 @@ class Filesystem { if (self::$defaultInstance) { return false; } + self::$loader = new Loader(); self::$defaultInstance = new View($root); self::$mounts = new Mount\Manager(); @@ -232,7 +239,7 @@ class Filesystem { return true; } - static public function initMounts(){ + static public function initMounts() { self::$mounts = new Mount\Manager(); } @@ -365,7 +372,7 @@ class Filesystem { * @param string $mountpoint */ static public function mount($class, $arguments, $mountpoint) { - $mount = new Mount\Mount($class, $mountpoint, $arguments); + $mount = new Mount\Mount($class, $mountpoint, $arguments, self::$loader); self::$mounts->addMount($mount); } diff --git a/lib/files/mount/mount.php b/lib/files/mount/mount.php index d25a7b3be6e..17b0055ee84 100644 --- a/lib/files/mount/mount.php +++ b/lib/files/mount/mount.php @@ -9,10 +9,10 @@ namespace OC\Files\Mount; use \OC\Files\Filesystem; +use OC\Files\Storage\Loader; +use OC\Files\Storage\Storage; class Mount { - - /** * @var \OC\Files\Storage\Storage $storage */ @@ -23,24 +23,30 @@ class Mount { private $mountPoint; /** - * @var callable[] $storageWrappers + * @var \OC\Files\Storage\Loader $loader */ - private $storageWrappers = array(); + private $loader; /** - * @param string|\OC\Files\Storage\Storage $storage + * @param string | \OC\Files\Storage\Storage $storage * @param string $mountpoint - * @param array $arguments (optional) + * @param array $arguments (optional)\ + * @param \OC\Files\Storage\Loader $loader */ - public function __construct($storage, $mountpoint, $arguments = null) { + public function __construct($storage, $mountpoint, $arguments = null, $loader = null) { if (is_null($arguments)) { $arguments = array(); } + if (is_null($loader)) { + $this->loader = new Loader(); + } else { + $this->loader = $loader; + } $mountpoint = $this->formatPath($mountpoint); - if ($storage instanceof \OC\Files\Storage\Storage) { + if ($storage instanceof Storage) { $this->class = get_class($storage); - $this->storage = $storage; + $this->storage = $this->loader->wrap($mountpoint, $storage); } else { // Update old classes to new namespace if (strpos($storage, 'OC_Filestorage_') !== false) { @@ -67,7 +73,7 @@ class Mount { private function createStorage() { if (class_exists($this->class)) { try { - return $this->loadStorage($this->class, $this->arguments); + return $this->loader->load($this->mountPoint, $this->class, $this->arguments); } catch (\Exception $exception) { \OC_Log::write('core', $exception->getMessage(), \OC_Log::ERROR); return null; @@ -78,25 +84,6 @@ class Mount { } } - /** - * allow modifier storage behaviour by adding wrappers around storages - * - * $callback should be a function of type (string $mountPoint, Storage $storage) => Storage - * - * @param callable $callback - */ - public function addStorageWrapper($callback) { - $this->storageWrappers[] = $callback; - } - - private function loadStorage($class, $arguments) { - $storage = new $class($arguments); - foreach ($this->storageWrappers as $wrapper) { - $storage = $wrapper($this->mountPoint, $storage); - } - return $storage; - } - /** * @return \OC\Files\Storage\Storage */ diff --git a/lib/files/storage/loader.php b/lib/files/storage/loader.php index 7330cae4cc4..2572ef443bc 100644 --- a/lib/files/storage/loader.php +++ b/lib/files/storage/loader.php @@ -9,9 +9,30 @@ namespace OC\Files\Storage; class Loader { - private function $wrappers + /** + * @var callable[] $storageWrappers + */ + private $storageWrappers = array(); - public function load($class, $arguments) { - return new $class($arguments); + /** + * allow modifier storage behaviour by adding wrappers around storages + * + * $callback should be a function of type (string $mountPoint, Storage $storage) => Storage + * + * @param callable $callback + */ + public function addStorageWrapper($callback) { + $this->storageWrappers[] = $callback; + } + + public function load($mountPoint, $class, $arguments) { + return $this->wrap($mountPoint, new $class($arguments)); + } + + public function wrap($mountPoint, $storage) { + foreach ($this->storageWrappers as $wrapper) { + $storage = $wrapper($mountPoint, $storage); + } + return $storage; } } -- GitLab From 85a9b7f0949932b1def24f86ab7dc3df87933e6f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 17:12:45 +0200 Subject: [PATCH 016/215] Storage wrapper: provide access to the wrapped storage --- lib/files/storage/wrapper.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/files/storage/wrapper.php b/lib/files/storage/wrapper.php index 5939faec562..78892a564c4 100644 --- a/lib/files/storage/wrapper.php +++ b/lib/files/storage/wrapper.php @@ -10,7 +10,7 @@ namespace OC\Files\Storage; class Wrapper implements Storage { /** - * @var Storage $storage + * @var \OC\Files\Storage\Storage $storage */ protected $storage; @@ -21,6 +21,13 @@ class Wrapper implements Storage { $this->storage = $parameters['storage']; } + /** + * @return \OC\Files\Storage\Storage + */ + public function getWrapperStorage() { + return $this->storage; + } + /** * Get the identifier for the storage, * the returned id should be the same for every storage object that is created with the same parameters -- GitLab From 2708ab09abf12321df97ed730a83c328d2b360fc Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 17:40:19 +0200 Subject: [PATCH 017/215] storage loader needs to be accessible by apps --- lib/files/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 0daa863e79d..a7b1da57c1a 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -146,7 +146,7 @@ class Filesystem { /** * @var \OC\Files\Storage\Loader $loader */ - private static $loader; + public static $loader; /** * get the mountpoint of the storage object for a path -- GitLab From 31693d393749c94591dc0814cc502eac8d415e11 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 17:40:38 +0200 Subject: [PATCH 018/215] add test cases for Mount --- tests/lib/files/mount/mount.php | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 tests/lib/files/mount/mount.php diff --git a/tests/lib/files/mount/mount.php b/tests/lib/files/mount/mount.php new file mode 100644 index 00000000000..aa98db856f4 --- /dev/null +++ b/tests/lib/files/mount/mount.php @@ -0,0 +1,46 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Mount; + + +use OC\Files\Storage\Loader; +use OC\Files\Storage\Wrapper; + +class Mount extends \PHPUnit_Framework_TestCase { + public function testFromStorageObject() { + $storage = $this->getMockBuilder('\OC\Files\Storage\Temporary') + ->disableOriginalConstructor() + ->getMock(); + $mount = new \OC\Files\Mount\Mount($storage, '/foo'); + $this->assertInstanceOf('\OC\Files\Storage\Temporary', $mount->getStorage()); + } + + public function testFromStorageClassname() { + $mount = new \OC\Files\Mount\Mount('\OC\Files\Storage\Temporary', '/foo'); + $this->assertInstanceOf('\OC\Files\Storage\Temporary', $mount->getStorage()); + } + + public function testWrapper() { + $test = $this; + $wrapper = function ($mountPoint, $storage) use (&$test) { + $test->assertEquals('/foo/', $mountPoint); + $test->assertInstanceOf('\OC\Files\Storage\Storage', $storage); + return new Wrapper(array('storage' => $storage)); + }; + + $loader = new Loader(); + $loader->addStorageWrapper($wrapper); + + $storage = $this->getMockBuilder('\OC\Files\Storage\Temporary') + ->disableOriginalConstructor() + ->getMock(); + $mount = new \OC\Files\Mount\Mount($storage, '/foo', array(), $loader); + $this->assertInstanceOf('\OC\Files\Storage\Wrapper', $mount->getStorage()); + } +} -- GitLab From 94ca576c9ac30b7e5878c108a5efe2cad16faa94 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 17:50:10 +0200 Subject: [PATCH 019/215] use a getter for the storage loader to ensure the instance is created --- lib/files/filesystem.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index a7b1da57c1a..3d7d5abf8fe 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -146,7 +146,14 @@ class Filesystem { /** * @var \OC\Files\Storage\Loader $loader */ - public static $loader; + private static $loader; + + public static function getLoader(){ + if (!self::$loader) { + self::$loader = new Loader(); + } + return self::$loader; + } /** * get the mountpoint of the storage object for a path @@ -245,7 +252,7 @@ class Filesystem { if (self::$defaultInstance) { return false; } - self::$loader = new Loader(); + self::getLoader(); self::$defaultInstance = new View($root); if (!self::$mounts) { @@ -400,7 +407,7 @@ class Filesystem { if (!self::$mounts) { \OC_Util::setupFS(); } - $mount = new Mount\Mount($class, $mountpoint, $arguments, self::$loader); + $mount = new Mount\Mount($class, $mountpoint, $arguments, self::getLoader()); self::$mounts->addMount($mount); } -- GitLab From e0547a25ab9c5a3d9454611f72e00e3bc667e2d2 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 3 May 2013 00:15:28 +0200 Subject: [PATCH 020/215] if rename of file fails, the rename is undone in the view - #fix 2820 Changes: * OC.dialog -> OC.Notification * Added test * Fixed OC.Notification.show() issue for queued items * Highlight failed item and show notification --- apps/files/js/filelist.js | 41 ++++++++++++++++++++++++++++---- apps/files/lib/app.php | 2 +- apps/files/tests/ajax_rename.php | 2 +- core/js/js.js | 4 ++-- 4 files changed, 40 insertions(+), 9 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e19a35bbc5b..c6663836fd7 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -208,13 +208,44 @@ var FileList={ if (FileList.checkName(name, newname, false)) { newname = name; } else { - $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { - if (!result || result.status == 'error') { - OC.dialogs.alert(result.data.message, 'Error moving file'); - newname = name; + // save background image, because it's replaced by a spinner while async request + var oldBackgroundImage = td.css('background-image'); + // mark as loading + td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); + $.ajax({ + url: OC.filePath('files','ajax','rename.php'), + data: { + dir : $('#dir').val(), + newname: newname, + file: name + }, + success: function(result) { + if (!result || result.status === 'error') { + OC.Notification.show(result.data.message); + newname = name; + // revert changes + tr.attr('data-file', newname); + var path = td.children('a.name').attr('href'); + td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname))); + if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { + var basename=newname.substr(0,newname.lastIndexOf('.')); + } else { + var basename=newname; + } + td.find('a.name span.nametext').text(basename); + if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { + if (td.find('a.name span.extension').length === 0 ) { + td.find('a.name span.nametext').append(''); + } + td.find('a.name span.extension').text(newname.substr(newname.lastIndexOf('.'))); + } + tr.find('.fileactions').effect('highlight', {}, 5000); + tr.effect('highlight', {}, 5000); + } + // remove loading mark and recover old image + td.css('background-image', oldBackgroundImage); } }); - } } tr.data('renaming',false); diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index c2a4b9c2675..f7052ef80b0 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -70,7 +70,7 @@ class App { } else { // rename failed $result['data'] = array( - 'message' => $this->l10n->t('Unable to rename file') + 'message' => $this->l10n->t('%s could not be renamed', array($oldname)) ); } return $result; diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 23e5761ddda..2b90a11743d 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -50,7 +50,7 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $result = $this->files->rename($dir, $oldname, $newname); $expected = array( 'success' => false, - 'data' => array('message' => 'Unable to rename file') + 'data' => array('message' => '%s could not be renamed') ); $this->assertEquals($expected, $result); diff --git a/core/js/js.js b/core/js/js.js index 3cb4d3dd151..55db625a339 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -349,10 +349,10 @@ OC.Notification={ }, show: function(text) { if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ - $('#notification').html(text); + $('#notification').text(text); $('#notification').fadeIn().css("display","inline"); }else{ - OC.Notification.queuedNotifications.push($(text).html()); + OC.Notification.queuedNotifications.push($('
    ').text(text).html()); } }, isHidden: function() { -- GitLab From 383e4c62b578996b343b540e03c7afed61be644e Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 17 Jun 2013 00:02:42 +0200 Subject: [PATCH 021/215] in case $_SERVER['HTTP_HOST']) is not set let's return localhost - better than nothing --- lib/request.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/request.php b/lib/request.php index 4d8380eb9ac..aa5f53c08eb 100755 --- a/lib/request.php +++ b/lib/request.php @@ -19,7 +19,7 @@ class OC_Request { /** * @brief Returns the server host - * @returns the server host + * @returns string the server host * * Returns the server host, even if the website uses one or more * reverse proxies @@ -40,7 +40,7 @@ class OC_Request { } } else{ - $host = $_SERVER['HTTP_HOST']; + $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost'; } return $host; } @@ -48,7 +48,7 @@ class OC_Request { /** * @brief Returns the server protocol - * @returns the server protocol + * @returns string the server protocol * * Returns the server protocol. It respects reverse proxy servers and load balancers */ @@ -70,7 +70,7 @@ class OC_Request { /** * @brief Returns the request uri - * @returns the request uri + * @returns string the request uri * * Returns the request uri, even if the website uses one or more * reverse proxies @@ -85,7 +85,7 @@ class OC_Request { /** * @brief Returns the script name - * @returns the script name + * @returns string the script name * * Returns the script name, even if the website uses one or more * reverse proxies @@ -139,7 +139,7 @@ class OC_Request { /** * @brief Check if this is a no-cache request - * @returns true for no-cache + * @returns boolean true for no-cache */ static public function isNoCache() { if (!isset($_SERVER['HTTP_CACHE_CONTROL'])) { @@ -150,7 +150,7 @@ class OC_Request { /** * @brief Check if the requestor understands gzip - * @returns true for gzip encoding supported + * @returns boolean true for gzip encoding supported */ static public function acceptGZip() { if (!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) { -- GitLab From 9e78e6b2e5bc9231265e5cb8e8ba1d7cdebab94b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:14:36 +0200 Subject: [PATCH 022/215] differentiate delete from close icon --- core/css/styles.css | 1 - core/img/actions/delete-hover.png | Bin 254 -> 0 bytes core/img/actions/delete-hover.svg | 6 --- core/img/actions/delete.png | Bin 240 -> 334 bytes core/img/actions/delete.svg | 67 ++++++++++++++++++++++++++++-- 5 files changed, 63 insertions(+), 11 deletions(-) delete mode 100644 core/img/actions/delete-hover.png delete mode 100644 core/img/actions/delete-hover.svg diff --git a/core/css/styles.css b/core/css/styles.css index 40a17a42876..7100b8c290d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -655,7 +655,6 @@ div.crumb:active { /* icons */ .folder-icon { background-image: url('../img/places/folder.svg'); } .delete-icon { background-image: url('../img/actions/delete.svg'); } -.delete-icon:hover { background-image: url('../img/actions/delete-hover.svg'); } .edit-icon { background-image: url('../img/actions/rename.svg'); } /* buttons */ diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png deleted file mode 100644 index 048d91cee5143ce826ef9ef3d7619d835bce0877..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFtWs_ aoD4g!3*63oe>4_o2!p4qpUXO@geCyPB2g0n diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg deleted file mode 100644 index 3e8d26c9786..00000000000 --- a/core/img/actions/delete-hover.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index fa8e18183ed3d126ab5706d093f7e64d944c835a..6362903937c001f3bd5ebac47fe8ed48195c66a9 100644 GIT binary patch delta 232 zcmV+&}~bf3=zHpZ|7e*Ceq`u^d4TTzUyp%6)=tL3jrL8e=F`1_{v2FgFH?d(zz{22yHp2FkHy i{}pye@U`kQEzujdT3cnj%BXMv0000BD)H2AVO_LHz0xN sSfI!Nio8H^AW|b5DN9I0Gcy4I+7e6GgT+Z{00000NkvXXt^-0~g7-r)8UO$Q diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index ef564bfd482..08ea381f378 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,65 @@ - - - - + + + + + image/svg+xml + + + + + + + + + -- GitLab From 257ebc2830a04272c0b662cce85fea6470e77f7c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:18:45 +0200 Subject: [PATCH 023/215] use consistent icon for 'restore'/versions/history, also SVG --- apps/files_trashbin/js/trash.js | 2 +- core/img/actions/undelete.png | Bin 624 -> 0 bytes 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 core/img/actions/undelete.png diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 691642811b7..82119a59517 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); diff --git a/core/img/actions/undelete.png b/core/img/actions/undelete.png deleted file mode 100644 index d712527ef617dca921bcf75b917a1f728bc2102c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 624 zcmV-$0+0QPP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01m_e01m_fl`9S#00007bV*G`2i*Z4 z3Ih^4(F+g&000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0005YNkljtP1&(N=qgyIH-$IORb=2uhU1ruT51DFWl*#dmi_k^F&qomon=Oo)3xb zj>=#_0(psc4$7&g?G1sdimGz4pCVn^hZoMX?U1D;m^xyn5ga2-8>EgMC~^JMc6Ucr zR|pFGxD+(hFimy9A+%|hcwz)YArWV^HN-675Z&{FTb~mR34jVvp?Oz@d)n=NY5oQ~ z`(jKYIP4u7N7eWU&h>KHB?ua7q>ewLq8oiAqomuzR1GaPuD&~{sw*O<+b9ELz}Syv zMp*p#gzxw)ik#KgNBVfP%+gQF;~9XUJIs}JDhE@4vMuzLIiQ2ZxfY*|6Gvsgh~%X| zm;D{Vw`Mv3XiY5nYq778i8U^$D(`R7xjV`$1cz{BhONnAV<;qJ+}Yg341z Date: Mon, 17 Jun 2013 12:22:09 +0200 Subject: [PATCH 024/215] transparent background for lock icon --- core/img/actions/lock.png | Bin 182 -> 295 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/core/img/actions/lock.png b/core/img/actions/lock.png index dbcffa3990f7dace24aaae6836977a142d57fe47..f3121811ea69565b897e2806f7d9aa66ac90bd68 100644 GIT binary patch delta 279 zcmdnSxSVN%WIY=L1B3kM|A|0~rP#?cgaZg_I8r)*e9i)o$YKTt-s>RD=%g{b0w^e1 z;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6j0F;PZ!4!i{7{A^|_oJC0IV( z?>d+z*ps&Sp!Uh^vi=VTURl~SDcn1fu#v02ZEMZH==uCdk_r+MZc09zJ+U}UD0t0A z{&j}ApUOl$G(&GZ>T&(hlbdl~L$ANk>FR}5T)BU~#LvijGiz1bKIgk;iA`s{&sv*3 z+_{kF#p4@71w7|(H}p?Tnmy%`(B>UQ6_4dznnTZ3^4(=GY>{g_Xx6i?f4%x2<~qd( aOw%K3&I{Q5%Mt>*n8DN4&t;ucLK6V}&2v=% delta 165 zcmZ3^w2g6sWIY2ASj||l7f3M{J9&n1JmZR<3FL4VctjR6Fz_7#VaBQ2e9}O{Xipc% z5Q*^QAN)+|heSn{&o|HHQAkqUe0$2vcRHsNn9OflIi4x&+Z`b4+Lmzi|5vRAOzT_) z8f)}dG}M~9EVv`t?!er?#8ATHgIV+1-t>m%6gev{5wF9JFaQ5%*vHx)6&$7Z6lf2F Mr>mdKI;Vst042>j5dZ)H -- GitLab From 344a73b173c3dc0a1a203e5db4fa64adab7f0e48 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:26:32 +0200 Subject: [PATCH 025/215] use mail icon consistent with Mail app icon --- core/img/actions/mail.png | Bin 405 -> 303 bytes core/img/actions/mail.svg | 100 +++++++++++++++++++++++++++++++++++--- 2 files changed, 94 insertions(+), 6 deletions(-) diff --git a/core/img/actions/mail.png b/core/img/actions/mail.png index 8e884fbc0ea87ee8549053f603bbf9bf55c29817..be6142444ae8052e6f96c4b8afc3d267704d1507 100644 GIT binary patch delta 202 zcmV;*05$)W1Fr&*ZGQl)Nklr_MR^`+ZL{%_JcNRaUK%`xgM%Abc4cF&QKMz?eo)$N(qw--Mjd z!!ZvC*vE}mkRv+S<$8C5ExIL;1KL;@`VYb>8U@G!bxfY#Rc=|2~>PY$^U<*8}*KjdyZyb!vFvP07*qoM6N<$ Ef?jo5dH?_b delta 305 zcmV-10nYxf0+j=hZGQn0NklS$-FB#tb_!SEaWFs;Y9Dro1c*cU{M(X^P;C8Fpa46iAZ9 zQ51={<$2DAVQ?JBJdUFX&X{2b1}q#=;JWU)ZCh@dh8@Sbd9&wvBG)r8VBx@}X_{Wb zFnnv=6|ivNk}9Go4|~PW*<89D44u~8{V^x{_rLKK%>&TsaB3rf00000NkvXXu0mjf DVI7Wk diff --git a/core/img/actions/mail.svg b/core/img/actions/mail.svg index 2c63daac034..6e8a4bd7f6b 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,8 +1,96 @@ - - - - - - + + + + + + + image/svg+xml + + + + + + + + + + + + + + + -- GitLab From 078835ee9dd02e8f4cd8387c0eeace9913dc9349 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:27:45 +0200 Subject: [PATCH 026/215] remove unused big images --- core/img/remoteStorage-big.png | Bin 8372 -> 0 bytes core/img/weather-clear.png | Bin 21917 -> 0 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 core/img/remoteStorage-big.png delete mode 100644 core/img/weather-clear.png diff --git a/core/img/remoteStorage-big.png b/core/img/remoteStorage-big.png deleted file mode 100644 index 7e76e21209e539354805d12d8f92c5a8176c0861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8372 zcmXw92UJr{uucL2LY3Zo5hjiQbUP!5NV;RKq5%*QHpdyLYE>cMOr9^ zjv&&d2nY&-FaJC5-E;QtxqD}KXTF&;vu9?XnVIU-QFBoP0026JJ31DmexB6OR1~B) ziYm;I)R6~i8CX)0o=7UUr=)L){~fy^68+474X7nv@Q5_X8LVp?e9zA#IP5{7J0L79 z4C?jJC&=}IzdO_~(6eCw78d{@AZMVXY58b=uLzQB`KfupoQst_0F&QVaI5uc_=f2I z1ah$-_xlya;?cDn_6elrqL6o_<}34Jz0yi&9ZaPrvr<2+uCO<`9jH%MKtNvhvwEDo zZ$|b0KX-5X&FR34Q^IYQuV?>)_v<>1!!9=pVIez~1^xZ~%5|nz?IxM$;!$POMqX>y ze}zG5V6cd_9MiRQ5m7do?G?liu3R-#1?xc7BvmmxyDdpS3m& zyCH33uWR{%=R#{+ubjS-Oh=cnh;FtzZ?`C#G}K&^+N_Wad0r$S5htb{swiN;O6cT6 zEnC23Lz76$GCN0z(+T4gZBO#o-i1GZk{SB6NXYvGxK3impsK{;Hra4sN^wx(>$Chf z!B)|a1wyfvbQJjNMLok!iP5*{Us<}^(wn|3CS!M*KhiUO+0m@|%o`_X9ZzZNM9t-^ zx*2y@+pgD>C7cM=feSa5o{V)ay1W-@+W|`p zb|k1;9{~9&c_|CJTY4th8WnW27?4)&p@un!;S|1#X#Oo$Y6X~kgqKXx7c;35WJC(dKP=aPFoYPOc!qy6MCR=c9jCjxobIV zI_?biR{P@Ra(a62$n!>%1Bga(KHb`1e<6i6uLC`s9y0j`sG5>XGxvttJm#X2&=$z3 zMFyhU6VG@@VMI#h>!&bDw)V`y3-A>gpqm@6P zO`3xCE0pN|)OF~SsZ9u$>~Zo@tMiWazn*McA}hW` z40Zw0AgW|yishAy>(>mG-AJ*HfS;CAx~1@>1)%d9rXiCVgHBEV$49H#to60olg;1N zldY~#QgNcgHhc<(t$As6g8+GUXXUmH`TQhmyCCpf?=i66cGj9{_T=AJ?wmE>N)qzQ z_s&^iV_cxQ&n#)}2wnbOam64G6Fo?RYMjWS$VzhJo+Plvio(~&|Gjca+6x zh}k0dAwC8DiS_Wq7$? z|JZy!TvE!3^QlZ>yzyHPi-dIUj6ZNOpafX2ay#)i3mpPJP1+`fv1 zCBB?BOBgb7U9v~#x|bWiAIP~WKN&7hFF$34x09onr5=}h)q2=za(w_rFeeFFcONbN zF;UTqJ#3)Ll0ZFdQ=KSd9p{_)$^Co3yI`7ubt+kE->+vcXMpxfs_Mg_Vg~;T$)Wcx zPh&@w?>B+<$_~DNXj3y?kF|b2_9b^Re-5DsO}M+H3z3J&LZs^QlI~L=nTLMfm0FoY z(nhMA*0a;lZGI!(UY~ z8e%hHtn(q(Fek6dNlHWh8(r1YPG0;Km+jf(Vmj>NsPu2goKqA|h^S?d<+>OvC!i6m zF{$N2<|{Tqt36JJm;2sE?pWpAgqcAE`LHNEa%`C(Z1iDMd4`zcYHJu`>m%mIH0R8+ z4)zQ}j=I*~tu|HhdeUXMv(~yJ84+ag`D@CKVR_v>L~94#A0Z91bKZU>LE^~z|D&2& z%RxCy`)Zq@0N5+(Z{*}7%%P8CQLzArN*b>?Wybeu&+{=elkpYJi0w9}_)|RrWD^Pp z1|7py}6)($qVEJc=fhPk&`f^uhrq#z6-*KrMlv!Nq(o0re&OS7O|$pU!zP1 zPU3T}b!fzSjZV~?K{Op+P7g7^g^omZa&NX;+B5yW|0GKR`K-dFV7_MJne`*Mn4Q9n zgaaB*a4OmGG(NJ!7Kp$3Q(?vw1eNwZCZA=CaKq#_jP@=2E&aTu4)UVhGbxXMDV#NC zcCI!Bfrg+@$=1|g%v0mMigqCLO7w(>9s+#06YY1d{N;bjMr+zaBZfQwr6Z278!hm1 z60##A)hU|;$l>^_+&50PSr5!xUH1+_TnkFL9TNKrb?I-C_TixYt4_LNiF0i@mSQi;{g)?m^-S zC}nss@o);B4Od8(ij8+*lKEB^hviZp;Ziq=SkN%qp@*%*Pj z=EsCkXOePA8@2if0?__u;9vLQt}WaB7DKQ!XTf$A`hZ*Mq{L)fJ}{PnI*-Bmi%!_e zQj+{8qPIMDl=bMYP=oeS437FBR7&e~*uvPEoowE6vc>3`X2ev$(rbFcSSgTZxa)C7 zOS}XxzT7{S;`>Y#$zMJ&eDla&0d{wTj1xSP;3;n&^KPniM3o*k)M4&>a)uZxwHkf8n>S%Srm+s2Xyw8uk z>&0E!(nJr9g*w0o^0}(|v1_&5lncf{We4Z)pZ@NbkG4`5bE>>)Nwzaj4^7om`z%pD zYDk+;jG>u1A%&Ru?9}nAOqr)s(^b)N=RzU$gT@3z+8p3w(9G%G06cIJ%#*n1N}ge|E*Mbl+AtxVI@C)dneYI6E+4&kfycEiB|q7t?v?+u%3mQV zD?2rQBmo)svgU9R_+15z{VyOZvj=8Q+KqZgu}CCgPH2BEI2)18v)|#X*Q;ioN$1Wy zm3lyJUCI*7`07~}mAyZ;b>l-}c2w;rJ%&BZ*bF2*GeZixX6Z62?lv7KdhK$U;QnZN z?|U1a3Vllz+w953^LX&r>EFC+!cO?HAdniyYFKFI=LXYt)_aad#lPU>qjdQ+@(NV1 z2E6oNyoD?P`fkwYq{oj?%s#5TSv)naA_mldP~+iT$~@29SoLk=`xy*8epF=R;Dp;= z7op7Nz*8I@J7E93OQPe&D-u&_w!aoo)`kx(GA>LJsnV<*1WNrePZB3OuATMFsVEo2 zH{(#$WCiLmQQaPH$6sBq8!yjPA>@d2qIPy3tPzDmDiy2g7?N0hDD zUyc4qg_l}O(;+=hujCBbZ(v+tLrS8lu;mI%eQZ%ui%t3($t?{hT?>)&h-8!3EF#w| z9{JD=^?yv6O9^okL$b(I&vI-b77y(I-m(T@<55g`E5x-r$Gos5{$scL@MiKBmjN$9 z-0cs+FEClfZ`bKOXy^U1_yh+iO85K&|8~#;@fO%|U*_q1W?8MgQ_p%*q`jjAxn1wD zzuAtxKs+lMJ?8Oc=9mpu|8{?*GXz~;xS<;Bm>gg~ACBjhQ&(8nx6mSt2@H5M5?`-1 zk_jObWx8{J=J_oDSifZ(DK{gW#^D>Me80hkU#sKM&UV`s`|m&6phEJ3=rQ3xe@(8U zqAO37nPa6W@E@zQcogxM3HaOi1RUyFV_x`Qv4>ccHl_6F?~#H0iL_`Fb(F+V0V1qG zyomTK&UwhVSI^b7hP%FtL*uyzy0pP7?9>b>+m*R~hBebjtjh$ZyTG{(=8G*Q2>yRj z9(0Sa6m4nTFOh+ghIb!C)j4mhliTOR?>t=?94#`@#5`wC80&7FtZG2>xRugga?Bv$ z*r0}OB_9p@g3(6k_oVT_{5lSGca0-)?^C2a-tv#l%sZLyex__2U$iuh zYVDEmvPsQdm)P3(l{7bETQpSfyM|NRSFgSbBpu1Wad1&J+9^QGG^oR0Fj4V3H|lZ7 zUNXZdP-Ajf(T44lhLX3MxfQ{UMysZ#Z_yt1&59)1wf?e_<-3l~?dowu@M9zItSDD` z`(LzNx0Xk~WYp(xO(&Cvptl;Qmb3TDVZvKKmEW4-v3>1){f#pZR_95f; z_Qe4L`cD3}nDSV$x>wzO;QTb*Bejh`uNCHGIy1SEHHHBD!QZudxj0iH%wwq#-RN-z z&KIbx`u8da{yb{DqMJ|;GU?F=U5U@&VhxGtY};mwgx?Na_Bnd1aY@Gm;ntGGG{^1j{T2?S zk0Bu64;f<*ARU*D_357oJ4BbldxN9Djjy<1m9;LrabL)jehVWLk9$NmYqa3n1yOn5 zv?>&zUZ+fz9Hz(15QULzV8RRkE4VUy`V(J`gdZ9LFR$E8N7?aJyNviRw8##{)8V9t z4Z+!JcNXIBd|EL>VSUDh&h`w7FHF`7p?8;y3wzQLF=dBWs1QYS?by14V)OH^$?+Fe zaR9=Y==iO#6W#Zc$2T!VP(J4Mx(b(df-C?dt%M5 zTO`XV^&{Yd8Ory&NpX^Di<~>aJ}Mhm6~pclnI>{LcJHz7wr$1Uj?gJ>DG;;Iu{-kV z&p0FMhv>UaIqc=aiNxML3-nR4^srOghS0m+%|};=zfe!=y@QkcL-#eAi4bI|c};12 z`bh*&i>jeKyhQ-F=Ux~gy=W~Swi3uY{J1aQw&5a+=&aRx^E8Rb*uxI^@^5<- zn(A|M<)trIZD{>~X0y4a|F-fcV%tzqOst#p?TNp+0q^1g^EbYCYfLCzWEFqs{zD#;q*ymi{beu7g2p=lRumUI=QQ%BkB9))f*JrZSlH=e1S@O*nP`%dt zV-z=d@#n?DsHPfVU{qj`pGfTW^FC$)*11?T4CcJ?p}YEcWV7HC4{y`kwUvIkw?6nn z#Y!bc%G+>R9Nkj4zU;`@($mje_)oER2+OzU_ra5>s}ghT$_(*7lE{xwD*N`a+Usmz zge-Z<>`gj_F4JtNAdXi@fZH7rc5E+8vtJgf@%8wrO171ST=#EOW_Aax?ELK2=uW<^IswO3$mRO{5S|7XfLJ! z$=03uyG3=aMGss(k==~sS8TFO+{LnF4~f*&eI1}c7jTy!o=2dqm51F@L!45|=tNUP z^+ngoMs;GcoeA4qbU8y2bu7{ z+7A_gdjYNyr6!F$8@C^rV)}@Q=+HRVRZn?k?pWPo6sALTyqu?`d8_Yk4H$Q$wTRLG@UMw}w93SGt zscF?wGYkZ*^ZXnbWZ*ae{A2jhgxltw#mC>ZBI_H6pLXSj$cl?LWN*tAG9qEV z{|YyQN@R`VDdQ?Orzv3bTU8jj{_zm}hK85MtsC^;fByB$E3xAu5cPpy^0rPqdrkgw zWp`UDXr>cD)k{=Jc6M{PQh3QTs*&J+YfJW5C@Q3=BraLzN_8ez#2?hU2%ob4{aC*M z^08|QG9cpy%$Ln#qO~{5A};|O;a<)&g=j=S!~S62IlBQ_E<%UuQi#51&IvH?UThmv zull@)7Sgh7!{}y_-(0Mq2>KG}12lQwbnUIi@T7;N4n+jVKz%R1S8tud{>IJrTny_Z zrNE%Sm{4qsSxmkO^f415I%`#oeQ5Rvsg|)G4vLI%K(|C9BXgb+xF9xt6M%z&a;L3(BzHGe%dlBs4dr zfCyS^(lhdSYC3pHts3FvM~8dhYq{Gf-qb@+mF~JHdzV;ap-E#WuK>sxb<8Y2rTxX; z#JHM8jt7b^K9vpNrhKXX4Ep@gKk1?CHRKjR-x+G)`Cu_knYlYra{&^f$+VXc6b1aO z!cg~saV(4hQ8Opq(7aDaj=ykl_F0gw^Xe zV8f}l65U~>WJ#~Ic8Iv6sQ0Ek#c0K9eS*s`KW5t_qr^b)7g3P3c!b7oK>mJa*R>y8 zDW)6wCSJs4vx^H8puJ25II^89~e3=2TXUwcc~mk zrYJ*ooVU!-t?F>K{QVSb!92mz5VL_7cYaLToIE#bk3SWp&RI?}b;C|+i8VN`DM8`i zKo1SoFS=Ecu6fEzY?5r$cKMK4*IF=MPuJFV?$pL#t&IY<>?UA~t#a80btWUwtDZ`A#SZhO3! z&AjJ*0RJGD^xQ>GL@3wol^!Kw0)F`P?Pkyu*7U9zhE{pRrt(fI$MfAy*>$R5!5P8g zgR7g4+GW!?I^D|0$-?30h$7&5HZO{JcSy6}+Ns?-XI^$4YW3E(N6Jd{eF;vPtb z4LBdsLj9?%?tXWSfgWxftN#AD{UB{DAB=R3B(6U2g{AUDq&2c^x;B$qqS|rOhGw6`7~sxJ*VQf#o51jn3?J zj@U%00VK?@Ri*dEat151qh4fV&h)IU`#C)*-8HIw$amvBd}D*t4o!TD#Yq}p-X3~*3lReOv%7`dRkj1=R#JR#E}8_U|sI!Vok4iNdUsRYh0MH{u9-ypbT{<0+Vfr z%KY9_)^SgFDto5cxuLalVL~W_e7)o9XByoHGkQ(^ZfrQr$G|HJk3u%@FCy&nEdLot z5#+uaxe33QtU?*A}L?A^tR>#Yf(i``3K+Hlk~|F`9l2#a+%6bMTW%LiMcg;E*l)b@#L=C35Nx zR_t{>>QHpXq2IgPdUQjJji!J`h5p?VaGsH^OhL;cajgwY1hSkoMT} z34NJS&EB7O#@c1IoiNC1*gMuMCfR+#)-` zLHllN3J%E$tNJJW@ltQk?tZ*=j|%DKcn5Yr=>2~X>%U*1#PNCpec0OhDQ&q1lLI)T z;1{wz)oKr)SZXdPv%*}}ruS?MC#w^61f!fYY75ADD3`)W7`gz56NbULEWc$1kBbzH z1ZbK)LTsb)0YBc6@+$YlBh`HGbDyF#-=d}J zh6iIwS@^O2OE#-moYGf2cb)WDMjQW+-~u`oYF^6aMm-aKh?EnFc0}3Jqse1jGD;zo zNF>$S{9g-NI5Fl0@F0-|RY6NtF+7!`e2qO$)2^z3;~?sH~{aT#wD!5_`8M zU{nxZj5bL7;sD}T9%Os)qs`z)0wey~N~k{Ag`32<)7yv86_G=xrKB)!Z!hhGbsAeL zw`q5tOs5WJH7D{qsugUX;p(+n1aXvn3|v$dacDZOIv?O4fDW*hB7fU@#MA(TKsHOwJ~M9boXdd;^gDb}Ly2jLyIAi3mo@|12pr{vABOi?$Mm z6W`s*3CTcb^eO-&K?gsv02Z($i!5~Q15bvup6UsGW2tV|m7rC77v{@6i}Fy`cajqI zS1%-sHTpqWbWo>Wl|eq6dDYN{%51VaNE>tGP{MFlCb~&;0Qj4$SWOr38EkVq{CPQF z{i|Z9TT-F5mA@$MrveLy<(`Pz-Q*|fm?!e!TV9j28A%|v5%*6Xg5j!Ar)LsmgnXHS zb_QM|r3yQVX6>*xk-oBWof>HDw4m`H!CgW=`hvb?cHLPawn_8)dz<)gRnSUO6;b%W zRjXom!7aTlz=l3wc2TJ**hzFu&)8d%SP8Zomg|;=%8{*|5_>gb|mjW zzy>q0v4XQl;v|-maY~f?TYnRRgH}|QRwu;%cStpR?Jv(S4QpyH7gcuBWL*LXyMVkyev|!xL)g*I&AYw2)T`(y1;e0WPX_9(v2p%(}g~BinJuJd$iIaROCa~;$!B(&3_cLH5|NvOP55_4FiCIuBlGFmUG)du`clLr^f*=Uq08*m7v>`^8 z2-^~Uk>ZrALZ|XA`I1ze%HKfquSnTd$+vtF%H@>f5+j=_(U*vpEYK1y!XgP?KmY`= z_uaX@x9-khceuL%L4lO1B4gtzJUBgF@6OCS=Q*cOpPmu#J$LcX7mB;MD}a9vkTE{$ zm7mlr-r!vUd`9q*SGwmfX^1xM@q@o z#)p;y_1tqGUj*mRqnDPDyEVY4hTA&L1BN@HQ0ZhOV@IlIpZ(bDzBzf42yo!-T>*S5 zSk~Nv@tO=!oucMg3rL;%l6#aYxuWYOJSz^93G1h=O9Gpl%tBI2xQej1#w zo%N{YWi%%~xRn68{ZjJcuNa>%{GtI#7Wx?+V}}uh*jaBr&(32#?0M)&f~=WVkRDeP}V5 zEJrvSE`ws5fXm3uQGP}-ip{RQ^&XCEP11~VMZ_BR?h^3P;ek(91Y29Mnm2BBR9prD z^Kr;?2)9Fb*5D-MDjJPpiJLLHtar0ZqbD53D^Dk=*95Z@J4eY3`CS2goEFVF07A}w zLLw*C$Qo)m zMBQ9iE*nO~0OP;6hvqerH+s>9g`nA_OVeIYOQ#;yE;De^>Lf;)^e3 zfg`4^>il5YaQ0LPB9X3gR95HQH)0SuM8z8qgm`B{ErwM>KyK>kuTO`#FuAp{ywz*e zvU~$=ZR#8&+6?)rxN%>v%3T56iW5F(69?4!^`!tVf4n8(_xCc#ZU#Av!iptI+q_3W z{k-tfQp_l(viTIfA3H$Z#A2q#D63Prn1n#G{T_huyD0Qd9WBxRmJbnr|5P}on{C?f zAu3PfnBg6(|MMj9P5aML0CzqqYcpbq;ft4RJTy?Wo{ssjR;(O~;B!v|{JS%I#oe1RiIRx#z?V(Ad5{#F(%GKf?mLR^e+E5hCiQ+SPN2=XlEqJganX1XQTM)m{Y1o zF$#zWn(nIF%~EFwiL;tC2T=gP9g4r#{#64g?$!W!zZ;PsoG&QJ*rHB%HDRh2^YoL^ zZN=jcCMZI~JH0yp`lR9c6Pnr76v42xxoy&@;*Hr(NELKg&wXi`-}a?p#2y=jbmIVa zVvMaTpGUe36A|S4pQBhp^Z3I}ax;am9Fftyn+s=-8K}1iR&~U%i6a9BAcBb8Hud*S zos-`ze%7G*r?mt;d1=J=Pfvf~!)nnZqGal7O8TCm)@Z!HhVKz3+c?cx)NX{{a|uk` zWv$lXkqbgGFrle(Ekz9))1BEUgd%366L~dETFM4Y6QakQpH1>!I7Q%U*fPdctsrr= zSWt5*ipvBPjW#|DDRS5vMNC~#RB??kou;-?l(jP1*=}0E0pQ^SLO7Q#Lb=V)f^ml1 zJzoANR|8xe^!V;Kj@+znUy-nbBBb?J%8skknwnw{a`r5WXSuPa2b@GRi()6&NN$Pr z99Iai>xN=QSu0I4JxdX#6u~^Yttfp80XXaFmVy?CGUjGC_Z688Nq-(7bL)l4)Lg@(3@ZpLqs3 ze-=&cvLfolj4H_oDpIs>d0gH5EOsN)B&-rd5^Ji4HL6*vB*`-|^jb03b=%jsQwfWiXrrU(t!?j$ z@%SVwokRfPEUIjb1*Ch|kvpXETkD+*zZKD&Z}aqz2A@_9@bmvF)UUm;uBJ@FpM7oN z@LHFqY>?wvcsDFe6=Kp^-d${R0ex}_jYg0lCM2TXG{oxzaydb>vqYJvRC$wN;FYSn zupOhb1fRDR<0(n*!RZ-dSF5~kI?AT?!<1l@2wAL(pdAZMuywSw#T7H!jEwkUD+T&B!q>pE(S=&TQBqvFAcXnhj{j;!=;$@>L{oG&kDDN zsLyT&IEVQ-t=;JPZ@onv9^<>eKKuT$>X-$JEu!sE+Lr=+(I{$5kJE1@bTAb232Sje zR*T517_}{h9qi!K2MRNaaW+xLX=lqRmnRF(_m%bL2$on=%^=dr%W&E#)egPPXkFDo zX1tVjoTM%@Q)GIIs&=0WDg}ekXxGH}#F}^-B}+7VwW8OVA&@?EEwu>&vxkJxSO_Z> zoTMmMIF8zHL3_AK1m}M@EP~(b**Hss#7L+M!VwkbEQkC;Zo%gem@zb^{XDTV$*s|#)Yop7W5}zW{auUpX zXHMX=hE-WuO4Y#Yj(BFh8nu;Ei=p=!qdcQ1&`5Qxe`2A(! zpior&+2?DF-ZCt`l!5oVVt7w2L;WHrzLoO@sdfVaR6Mj#Ql;&}`gk45`! zUk~tNAKXPGe3ED>pvW~V?T|j3#tosp5^1Yrs6A3v)AMAbkdjuV@;VYtA!Y32%}gQ3 zH0gb%v(sMkw)VEGghi){M8Se`Qj>r=!FTa`Y+X|uJ7ZPZQQFNwky4nhvu?^)be*&F zNLACSXeb5=qjDY>JSgFo!=;P1C`dt9mb(JT-x$%J|0%-xBWnc2yF9LlDRBV%iq#Q>7l;_e? z!tXqtz@&0MgGX(zRZ@=VKl00LuL_lkdaL!aBpA@#id?c5dhd>qCl8epbjbabalV81 z?aJA+{0E1clxtoVw<0^tj6!5=Cx@)gsf)&4G=2 z#y2(t`kk&XJ7196_7&$`LzybXsuWWQMk`#j=o};Gv&7|eiqb{dfR-(bR#B8CiluyD zXKm>NR}msEKu-oWNOBtjpzWRNyHilRoq+8ldLEAR@=6w zOONu1@*-F-QaPwRTGv3px*-ID*UF=z5}d>1>#B$wdc8JfHtW+|4uiO(<55o}Qc4Y9 za^9^XegrDVMWTw%()jg{60Uwr)mE?IrH@nD$V-uoQYem0QS%ix>(h%X%-jN1_&JJ= z|H*HDug8VoXmGI%m!s~hN*Al<0x7XQ;t~^#4fMd7FOWh)C!kc@*rl z_vWOeTW=8bw}`fcNFH&+#&L#e4awIe*jaH!e7vmka(kni8g6lK)|Y#v=jwXsmCm(9 zvk#9Ya*Ck)04i;xq8bvUs2~ARfCuMrx)8RK8*owzOj4Ds7ddiO*&q$CqzPc;zoDu{$PIeO#3xVM%u1oXrBQ!~80C zIAqYBLU+D`>-{lb`@h%u`>!{%$~WT5)>-<|G>zU0_5N!&9e{o3Obt^D&>I>5;-w7l z{T;IMCnW$;;N2ZF!SQU7AYbQm-yZD0kw0BdsLgkY%b0~XBJ@Tu8f{gxRomOUTKbh0iA9U8u0moD{KEsVR*9r0^BswXhbjDX&7e#MnYt=1nUULt! zQ8i4438Mw6J@WL}>5pMri=YH>fS*`EJTRu`05bW{3wuy|be3xCGWnHP7{2uaMY-nl zm^|*v8#9ZXPn)aZ*qVCwU<^7X2=GE2H4Zm@Bc^0*jP ztlMPuy4Gcds~w}1X{z+JQ!c@5yspCG$ZC6{8b&AjD|&kUYTk0I)l}FIO?vz*BoCg! zOdmsVc(HqSOp!wZ5D$J#;e+spMWFDzV}*?AMeoj6s}~r(@gjrO@B6$~4bmCjnmH0( zkHY4Hit<-TierU#O*a=Dx~X zBlEAebZ7e-jnTRNgRgtORLk#8x+G2_9j$WuTRXRpctSt`3sj$E2Dr5gRRab;^~(?6 z`f>WbWX*b^;?AW85*W?S;ik}X)m8w7d+teQYEyNfQ3rzUF0OWlEjJYoa zK>Q)E%Va2k>|2ilrw|n0D?o$aqbo9o=l_)6H>H!cGSdCneeXYE5%&ENdaF+BIf=gG)SQ1)OB!kk1+NFLQd>$_@3~^`F=h28Ge7?0V${Xt z$DUA@k-hgqK)QBazdQR9D|0oLHY(O1p2Y-Hg<~hoF1`D~Lm>&-p+3k6Y5^JTo4=9t z^A*5Ec`UHlFWITr{VEgOT(o?B4rP9kqI`|^x87!9A>g&SnMy^+jrOst4IWp{wW0S8 zMJ+*WWc4uDE?D%Yh(tz%s$w?larEk2#bfrpawZzZGW9F}g<$r6paiM*DZ6$e0A&#Y zL=HJ!Kt9Ir$#;$4`{xAQfdKGk!T>+E<$JHPb?(10YE=F9QT6i7e7s@8Fhi*=sIExS zxksGw#P9x56{?}>KX4kSd*$5QUNv^s^pzv$@EwCwuI$(610AGjeTDfqE^^}a{N`3V z&C!T@0&e39z0L{x;N7RN3lISoD3~VX9q>K&A$u*)r=DtBsh{!AZJ4&!W?W}Ppht@W(2@{W7LyjM-f$&$3b@_VSXjz|e( zda3rtszj6>(}M_b;Cwl7{D+I-z}W{=`$Cw^kL~W1m0hRf%-9Ct#`Ff;+hFH!{(!#O zEbB*tcW0N9OHtjvPFbtr*ZzCM(|mU8Xr1;{Q_&DJ59rqt_X z`A_)zUti)Zo@a1eCT5yWp=o$e5k+hOJK)`CqYp5_a3~9*;(ilzkr%m2Z+VLLss)LO zaCWrxi(>UDm8|_0$%QR^)O3UPNw1>EBrK0(vVh7JcBDEhmj^Rj7qjEhN);tbr)Yff z-y^C5RqS%#`FaxZY7*@thny~lBYl7V&e`9CKbRQvKnxE2;W_8=rR<5ohjr&ZSeQj`0e60+E?i{Tz{~i)5MDjfW=o~Q)Q8ID< zzT-cb1r9~OAa^bV{Vk~<4xBx)ICt>a?GA7ic&ouhhz+rM&h}sbSMq$|t9f(jzEhoz zI0>%O>_5zi$+VKyxR?cBAZK5bSPFlcBsHkD-(cn6;z5k{@y8@W3 z{r`z>RcF~0Y-X?Ddo?aw3lzz`4f<9K9jfGunBjJnTsdz{Rd;20)H{9u&bnWI?;me1Nw{~2AYfyxn`@7VwlIV1ok9P-I z!FpUF;3BXQ)y_IQ-}~?63Lo5)Tw6S)-wl#5kX(PyI<=vz=Cs&g+e!I~O0NBgAm65g zFKVNXf~itd$dK!C$#uq0!?XC$xB%qf<9!ju{RCx;$CT)YSWhqO>kB1?xfd@}PRTL6 zofmCm7p?q*NFMgq^}|ug@@v+mOGDMGQ$}uNSy+KhE5dcada<~qd zh=H4zhMREsp+7wKw_X4JVP{XG-|yPVc=Fg6Ko#O$%;>_4WN)5hm>So5Fj}3NkG>y7 zanDsrqMhDwdhk6Tt-o#pyG4uGroKhsjowikLl<1MZ$45s;*|lHE)_hp_v-&R-+2FX zJ`P3zxfBuH^DZWs%*QQoA2JzIpY{>~s1` z)iBDV8X?hKXr#0BQaL;_O!Fw(7`-`wjgn{Z``hb}9J!(ab?zK2F9YB~EO`I%1TcBgJ74pD z?;5#hgku_EXC@^zRj|7Gm&{Zr-R$5?w$a~^wc3jJ=BSpy7I~qszs)cEE4Ce$PE-w& zd%pmt0vVxn1xgMmH>eH@KBYkHo}Fw159s%<KUhXiA5D^wJWMeq>$<)2XRSK->*qX&YBmz%TpnvTk<3j9%(x}XwOnC;HCY_~FO zy_T27Mv%U;*?EM5b%e7B=K+uZ2;Ew9{W@xH4h1l_6;J}Z&j0w|2>K>!_Zag0qaXg8 zJr6vG281q(gn$`@@vTsf6f)IheQHCk`xn8rm>Dcfz2`~>TU#4>V{~QI4trLq1a45b z7ZB+qIseR<@Y(kw30Ncb^|6_5a7*x%F6fT=)IA zs%l@(t?xZOLypK1C0WSOW*ksfLODSg7_l5DMt}gLXTRigQ2Gja%u`8syN`M(k)oUwuzIc9`!vw!tpB>yzv}F^ z_pc1}@LM`=*?r`(NV=Tf$3=c5uBfR$X#{2M4h9H~MDOUq9pcuU9g{Pc6DL;^ExT_A~kq zBb<0_&*HOzo$_w9wUeH$Dq6v^s>;#0AA<{foq+ei4P!E|`sn7f~r-$~Xoxc4bTa3<3 zy|wGj;so^+)h7&`N$S7rj8>AFResV(T9GP~0=Y**eCg3Zf zzLcL{`|Z(>%6@i7X?|qf;>X^ELzkJ;rVi7HnU&TpXs0#M(!-+K z;g~XD!Oy#>KtxeGSwL1cHeh-N^#N_c zdWF-l@$han-2eRSR+e#!s&hht*CI!2GIiK!*`!xRwwfWX+@#2bVxY7{#t28e|GPtG z&s>3`N8xYtLGd9s{zKsReq(0>Re6O4u;7iaELe;tShv+`xRlMx9IjT)2RrlJO%{yq zeu&Se#NKZi&3fA8d#2qRkk95J&a%T>{&V(W*s(@2=@7Y;AlU+>2FXA)b@+zl+s=AF z*(k`m^VdlrI`=+`2uRk_)|C=P(B)mB+Ym-XW1@=Vc_73YrVMDyQp#B{$9L;1TbIqi zZAuTLJ=FAxv8l06tsl8Ti1eKk^+i8(t!w-t)AEG*Gm(40bwE=-i!wp|kNJZ?yMwCo z@^9);=r_c$PDH%&mkUHHzIpvLD>lxWvfRr1dMWq4tAyNy(`;tTN#ot*$hl@JvHykW zv%f2C`Fy=#G=6aQVs8?x3_waS#YzZcB-;i7x=-j61!JDfyB$A*N|zDj;!?oV>0p(P zqm?x2{?xUlVgjcD)rgu1s;QY&ln6v(7=sa{P^3v@W~1bjxPAY9x&GXBIhDd$lQE=- zJ6RSQtOz)77WT+YhE=Rbjh|k=?5d3&GSdfn2e`>U`LokC?0(t+NY4MqJn8`iz68BW zSd{wsP@)3=_HE@Kyfj_Js?O`_ly-Ou?lWS_=cBhH6Z?^HR;!ywQ=I+CH?BE-!0+3K zeqb$_JV^opMu`3hk&U$K)8u#%v)bIzq^&wAl7hut((fHDQq{mo_3z?ih>=t`W8;k#|P!+5%j3eB6Dcv$i;Uk zsIKlw>ii|4W0?&UA=P>S2?z>_dx-6aUj!@KHEzH0{e|2I`J$Ay~e@{sYfj=f#SX%wo;Lur{xk6}OKcG)tTk2f|KbLNMU z+X~kaZfN+JB|sGjuO5EQ^5&oP*ewf>`L)Q)pcj~>8ZfXY%UAAz^14OjC197tCDKu%x70G!l zSsi6QjyoZ`iLo|QTm4vy}?EbdmFxujZ-~g zp=XmtRgEwey=lWs`;m8ksLA=Cum`yD%>c{+`f$b@U+Ymaq~C5(`)#yW^!*ntJ9Fzz zYeH@N(li@J>@#Z0EVTB(EJn`S>4}<3B&%YK)x*idP`WCLWFQXABb{-M?v*6!?-GN> zxII!6*m10&%kE##mxQ&Y;KxFMC~2%BeYw)mWGAf(Byg}IhN8a*@xj`AN;*>{OTf1f zr@l9zPVa3UOy7zjn_KPe#%kz{WudmEFL{fLJVcD4RW^UJ9|@wnj^&8TjCL z#j;~Vv#Z2Q(KaI^pl7Vk}^wk@Sy;Hx=hRjq%M$noorS6;7xyWHeHSNXA>ZuXky+T}c$=bhjY48{X7 zO7t-h%f-Z8V;Xv5LEM^jHhW|lG3JTr3DM6m*(IR2%mRWW=bJUQPrA{clzfbh(={4c zSA>v?rj|%k{ZAm#8POj?Y`STG)vzX8MG&Wm1IZw(RAy&>D}=n4nc)lSdtcD##_IH4 zBM*LHRF1vL7a2v{9u6;O#lZQaI7EuvefN(YPAW1zCA4R>W=fb$x%0hwnbQ9!Dgj*z zE$LOkTOT8YTL{@%$amj6#QPa__@H%mGxPn=NGLw1*0kyai&?d88wCpq1mL>-zFZ6h z06ZG*f{YN^Kupnby8hyMKm=J&`_i?O)(cZWax&|z;F1G?WXBr985(8@5a<7XjI6F1 z5VHaR7OW_tW>-V;9GTuSraDwDT5XHV#7ob|kY&c^61=--ditSv@qK6Y77On4?ptI2 z^!*AxO&%b1RUMI}lL_2MI6yc;cpjKyY02<|9#vbmvgnDbC7;fSv)ib&F~-wH#eq@% zY;ru3fUxS^lXQWwzWJjwG%i32M228`i0QI9K$k1Hm<8^oS0oE6dS~RCea;qW3+CiRHDdGJz2gR*|y~1OZrQ_*&o;)d|D`Br!^2 zmtcX5G6L|Chl8|pQ9FA8XgH>9t@$%srf5r3+YRY2GJ@=4o4(D=PSnuHgl#np zX>~gW*|w^J0ZD>|E=wb8QGd}H|8&1Y?bbj8DhL)xl29g(wdrPpr;NDV;DG={P>-lb zHFim%mD7{MNqXtzBx~~(V2nZnf$`APi>aDyBG!y!)H5xrV=xaWs}tt=luS=>HZZw6 zrFqG6XB_yQ-N1XBar?%93IFCBVqSYi<8Nj!K!C5K*I(1-@wZjKgXiT*ejrWDWj~?H z9c?c0zFft%BNcy1#Sg{QeKpNMP17@Nz2V!cbWzV077>1tv{~o%p<|yb2^Yk0Oybw# zK55JaDL_FZz*_y+WhRi$Pe|-o*XgW40NrSRift50Mb@CyRU1_F%o;s~>crC?wPH^) z31y*t0=dASo5buc>fV4uK=$lw(rvfK;oHi2!HuXPF+~O`!6z@JmZgo zuoz{W%>>_%*x3S!M~2w~ja#wt56HrXvARu&2O-+$)R$$b>z-(byD@9d6}pkK7Uf)+ z6`%{CWUn)VB)zQBdO_kBlHDOcyJXT+h$TtaCH)TFYstQ-_H>Ro8dYg4b*Qf+TB$XS z6Y&UIN2CxHfc;B<+mDDzsNyS90r2ftEnmGE?*949y(^FQ1gc)21v#NNWOI>+FxtV_ zL&5JF6Ss(MUyN*8XcI&VGGMH|eh3b@1xmy1m{zr1{#A)jo>Ic@O|} z<6i;RoZfXf$zHQWKs!zs(*c1Zb;Uq~$xI$CK{6ksbGh2WsU;x)FP{`zR!e1 zJ~xJ2g#RBN5~YB!aVwA^#BC`CjUfh8xU&09q3f0x@6* znHm>bQyN?D;EDw?dRpJMYW!f(_c+sH22I@?)P+dR@VVwREZVJaz0~r}FSdL`JgKa^ z3;&_ffBGL8y~Rj*JPpk!Dlz8S00k^CHWAUu~V1Qx|YA`b*NyFNMc?hBtssVmcf{cO{T0T?Gh0 zI?mNSM*lHgtQTBZ2UwR|4WPF4x798F#^6qb_DrQdqb(;Y*~Hp>ZlbA)rj1SRGmNJV z0UIJlL*|WQT|`5~ix07Fr{1+gvuORe4b+1OZ=d4^9P7@1`z^=T&>YsVKO;;;o6#Uf znixP9t~O`nqC_$EJZNEpYt@%ozOZ%fc8V$#INgY$*@rMxi3dnMLgS{9c4Qy z>8Yv^LF1BVPYzx`jjIU4g-7(B3J=p|m_V}5fl>iUx?6w+h>6(2CmoWV^hdTvpclDb z^#YJ56@es*L|5pEI6qe6Sd2f^z%h1qVtegF+G>o?XPEIK>*2Xh;C0{z$~ORj>o+8& zY5oGZ@ixk9=$^0|PcH$lMXu8T>@O+)r;j30HW{zxylICzn;+r)CZ!vh7$0I!4KWVM z&TK^X#V(vi^Et%30K3aGl<}euD}f=+FLbhAFc(?!t4fAo07r`cq=n9j(zTSI0DxV2 zMl8?*1~h@;X+u9kYll}zbK(jFLB!jvJ%KPm?KITPt<4&wt?-2*3`%zDitm$gJ)!Xi z5m`eaq+6Y#zo{nh8^EhKJ$sDHU8bCFp0XJAv6GCRAGWOyGN*e6S4QNrx~R6KRe?mb zq49|=PC-+|YZnY%EdcBDrPGuQkqpRKk?oeW)d;K$fPf}X;FeBTjX+35y#;(KA#DPJ zf?hqh`Vh3;x0{ z80@xu^X7s#zhoYr5$s0N-_9!FwG?8<H~;FwR7&69_!$Bgs1vuN^Q%1*@nELW(35QCXFU?$II~B1vOG69}+t&X;qIo)Q6F zqEZMzK=G^J5kMuC3!h#Kx*p})$+k(7eg0Yi_28qBmv$kV^)=WHG(MEz5L=xfcI>q} zRoz}>G&M!(Xz9@_M>yM7&;D^JtG4Aof3;#S1Sap+Af8tVp!#b9KvMq19v|a&b}-{H zWlhKQTeq3nZWKoRQSu|pM8{Cc~JJm(l)Bs7AAC5fI z@v%X(YhcO z6-{iY3pmAiN0XH_6oycmkPoTZBCut!7;kq58_kJ7_8Z1W(Ubv*`imgwUQ3Qo_meXm zq7F>9bi9&m$w_4(i9s=l+T=U~(k+rMIWMHw`|}wt%qb4uZEh?M&83M+d&$n>R8uK!LM-SC*-nW1F;0`56i}=>G zcgBpr$DA8l^V%mTf(&3gB3oO8<6|nIDhlMR!fb8=pd1tLw}f_s=3&)GD&M-iHLd>i()|IGV0OQ*}ifE2)i1JDJU5{EvoJLW-n+51n2FT-tQw_W8(f!c50=! zjkqCVwoGP+8r(Ak`!hTrV2XfFXBYUf5B|Sps z`gLu9hBSslmSbz{Q&|Ow@cN4xFO-hntA^>kpb8GtF9lnAnU9_7B&Y_Xz2{Kh*Z%QT zh9{Hg;hGKcZ3BY<*(a5E}?B z#4?-q2jvkO?};7XQfF;2MJY}Hx#){$Y>|C|nB7Nv@3U!sM!o-#x<4Cap*s9gTkn1O zFyf!hxbpiMZ$!^6X}F=`Q(gvk{}s$c_~9SsyeI`Tn{#F?7Mb;{*`N{e*uIm|6(rW$ zyL-eNhQFXkNyxL#AGX^ zd3tmZTEkpj+`Bwzt?LbG>~?H6YEd~hd3--?-TfP~kjLCQ<~!SFvHKi#|1$if_Fcc|YvaIl|cgL*2JE$yHrxe*1RL$&>f2yHq6==ms)i8gVfVZsc|wjA!iV7kM7$X@0=` z2KW4sd6<~DW;#0TaE}MuV~EDa&>##FDs)#NsjgX7S($n6`?AK$JW*BB*liPm4c-we z_DMzPrPjB;wbtHiua(HKcM~%o#8#-M;n>%0)Y4*59lF$Cg2)79X1JF~73y|-&T9{2 z+mN{tE(cf+@Bn2C7Iwh$-F|tskYI#T32a~aD0hf`-(SW8<@vx~R>1aZUiU4VM!Vfl zgh(F%hD2%kCHTgmb5vgNJ61Bl0mYA{wElfIaM?I!)CGg7@?QIJ{-%&l!3H&uca$vm zFjSrxP6S|P3ytk7IDF?4CRZv@Mj@^;#D}2zlO4F)9892RT6_RA*TqX`w{X3Z;x{#e zbFiOZMG!zZcgf(*vkudn9D^hG5IZ^3@j^HggWN4FzR|MGf0BW|$&-#@o0B=~wJ#85 z8h)IR7?SW(-%?Q#dHq?%XlClLjtASir#I{*%Lv>rYde(#>;uX#0l+K)V*Cf^j)V9Z z1R!3z1UZ(2Oh6?F$~b^90?hr^&up2BaDdEyl~@UovUB)&CtkWD2Ip|#`+>)y&fO1) z0&v+_ViIohA<~ghCdB+pzEHDJqPJ1Uo6^>pFeCx<<)Yos|$aaqTE}*Z~ z_3Skdxhj-tCfGg%63uSr6qMphl{gYQRpNa7G>FjuU`O@c1=kzxf0&uM1%G)~CV^YVaVu99gP6 zNyYPXq@5I-Q^1U7=xr7_@t^hYdLl0Wm{~yZrxaW+!2^TmU)#WScxbeaSz(?>8iv@N zOvTpxb!Zub+z`SgaGM#9-Oh2hU02@3Aq?0^{rMU5bge`+h zcEBx&(%MlfZ z3xt-fsc;_YMuuYM1T@$`5a=`Y2Y9ft0AtB^WlnLoptx+>UON{Xivy(X6wam~nV~3B zy!wBJ=g&i)X&$d&XRf1@d`d|}U~B?>P@uBB1LieBa+>n?GjRL_@g&(??bp{n*57L9 zrXuQqXddVlAom%7mwf}cR|oTJV1j~3BXD=;C}gnD8N3t#Ql}QWyDW( zpyuD@Aj$w&fG8blj%)^U31Blgb8jCrfGc9Sd;lu4(&AkSh>`_z2Rpz>l8BRT1}hIe zQNQ4+isiyycA#BuTPMgXLf7bBbG4m!y+T|=QLJJM8aW7OVP1O;bguqtM|1CC#o1BI z$O*x&W8iM!d!zC6ApnI0e#W7!MUke6Cnu5PO*ot-^BG+L^U=o~LUf9xslD~t0oG2& z$O{KQcPKoKmtT+XyE|Aq9pIKwP)uQ(SMuFL`m%6ntY{E#xcJB!?!=Q&Y2@V2He{}f z2uJQ-#Y_3^;<1`DLNrPc)BzqcFnIs~l7sst0K6L5Z-vXT@|hR`V(bb=02ue3EBDeZ z?1Nzc5J;DKeF5w#JsT_C( z0Gm@B-L4zW{{Q#7h}@j0;A!cgs}lK52ZDrr>JgXAryx?zy{)_O`ecck+*KB-@QxLk zTU@>zpQ5$&a3~#@jgkfG0Q1>C3)~a00_NAp4B*wlRTWIt_LM(j1s;}9#=dHU$88B2Z8>Sx%z1?&10^ydy7x3zKv?Wj1XJEzjMR)lkfPb zRHopw8i-Obv5DvZG2OcgT>@|#CE~{*cmM!Qpgci2e;(PHGo&AEGW^FM5`p6wI07*2 zK0gbmo`f?3eEk-hcT;exn5aI>Am;?tzG}&~xlHn5Kk`5Q*q#k`^nxD{8@Yp0n9so^ zFPT7r`=#~!_0c{8fvoKXh2T{%J_ZB!L2zIX$}@o+D6O1aN%bR#eeicO4*YESUBn|7 zKstiUW4OEz()mHc*)P4STX9+zoGJ_~zXq9aqCeY0KK-y` zzT(B!zd;4DsroPRS~5k=^$WJWe$i`S6`7|Ju3-d#VxQ_=azOdX{eZCX zIMUZiN&PWM$7A}>2K$P)Zcq8HwEjURsXE^r&K&hGsL)*$+^s+iuK+5urWFcqy3m6) zXptd5cG$2$0)8PY+3mv9Ezhy9>t2xHn$l!`}ME}tHiYMdtl^+3d${lNYD>DlX?n!^1oBXa5`Yv~!7Szrsf)6&q z+JHFR0d`kVy?V8X=0(_T2ozj;Q?(87H~+ioKl4;2KmH_&omqVM(~AJ>0+fDf`px)(sr1CPknQR1otjfd^w(=(4D+3n-g}I|6rrD{Bdu9N#N2VF0HAVajDH!uD^m}N))-jP2cn0XH@eanDWWZ1s}Z`kYa^hv5? zp7VvPA5j^mF698sgN2{Tm8a%>E51s>ATMUGUI|0=07}0Y09<&b3Ry6mej~zzfyn!3 zB#f+}w*xddp=gAV?-i)j1UOh~Y@keQj=RP&=<0u9-1to88^nhNv$Yo;D_E2ag1cAZ z8P?UEkUOylf^ZB1rbcOE84QNtsszDE`IT{cD8~SR@W6O^W5~pTJCo8akOnyovN>Q& zCNSxqIGuvZl#h(rJM0;Gj07X=*9pUbRMA?HA51UQHdTNX#*~4PDHri4+VO!*ANo(^ z)C?zf177?(Y;_mmTkpU@qYu{&rqtBgZVsFQaNhlH3ui3<@T18A?2Qy+8tq0usr|X}J0cnDBdq!m-Ns zN3f>tT>YEi1!L7-Ox`exw#cq6v1f`6eXQ<`EQ5UT%Dynkz*PmztBrvmOU0`IOa!I! z?}-HN3FFvbBfn7wgm$ESSAxKq6fpVN^7FxXFE4pUabsFa0%R$pSbD>`}YQu7tr`U35Vh*Yx8LDfAkc ze`4j41-L??adQpLa;)#4g8@EMTG#`}Nf4&NkwPL{Xga(20?*ZR;5J8P^F7Bf&u#5% zPNdvbx|s-veaf+mLIp)EPp;oe7k5|8qm{x`D$=q001%*TFVDgK3fL$u4E9B+aqS?N zBPm}A9RPp@ksUDrYylccJ`VVF3>qokjxD}CFDerT=#(MST-&O+edwh6pw($Wvarp7 zbtC$3OR9&i2qYJ@;~;F#c0Z~JKf!R}6>{n^K+ zCRz|hfkVUL-VEU{9027gnNd7&8VnDEBYnJPv*~9U@s}N=t56#k7`II>TCWfiAI)yx zQ3ffJ8#a|-R6j*dD_6K?GSr>5<$N*Qb|Xj2Sexmf)%yyOYmbpaDmj(E6sX`%0yB`L|54=hHtk5CDFl z%7wmQ0F?2-(Qmep1<$!0k8#ib96@g-&D@+)jlU7d8)j-{L-4rBZSPX0U^()+V=!_C zygvYfIVUpBSq_jlZH@Pwb#|e*8TB`AxI=DeW&=3sb7E2v_HPvrJPs23mxOrWY2f~? z@cyf%2LVuMhRkxOrL^@Kd28ko^a9nI5T?4#)XvWwnJyPRhKo1BYJ_ZNUgyD_fJdC0 ztB^O|((=S4*WqzN*Z^1#dF>jo0O;x?u%ZpaQy9GsFIgR%zZVsMYbJ_EQMARzSf7z@{L# zH>_i!aLuQzvQKd4j4jgZCX=m9$A@>;X=b=VA*DFvTg!dsnB-J~-~a&r|92sH@TnF` zBFG)5%yDNtSyY=|QtOy&t+~KcA}mzce}k&{I=1IKOtWjK^nPZU-V#hDFi{t#Q31_7 z|b@gFadXT2DeJcff7B6Y14XrNSYr3n*9vL>z9ohAF;5I<1QzkUiH$Ro!_ki99D&FmZ)s?5GC*j3c zAw9A~UK5R-3n1p9XttauW*DQKvHSw(Y+L#M!`^H>8MfFj?BTFwvhZuYtzk0UHl1u> zIwEyaFmS<$1f!Au@9msQj$|MQR*wAPuo&;G!n0}{-RX|ER&V)3B^9`GF{+tnY2~D& z!7g|77B%{Ri|&jMT_wTO#E9W8conj-bsNLRfSblQ92GeiK^6JJ0_^qc@J_q~(Ku63 ze5X@wbl`q=7h6x>!Sq~5r$s}l>LeoVFr~YA?J*DME@^=1FAM;T;lr02kkw~lc?7rn zOT6?ecl!T6H-&m*5-2A4^sT#25@NG?wR$V=p#xF$kIgaTM=D(FBAGrSRJ;Xl1{j8I z!E1-DH_Qa#n#t*kq-xU!(H)X(N`gM|yw0l>=#PSGvpPL*?vOK7NIN? zxfNM~z!a8*6uy)+kRH=sz_N<(OX<5LsDvF^%eqW5;^b}$_yLSifad}EG6YRK*Pg~; z_&(ahrt>?`Qr!HC2-Ldtcmb0SVVf4MyURtYe(br4uRs+Vv8aL1g?Q=hZT$Sq+g^3% zi9$!lD_-v4qn~c!+jCB}bc$WnAcHnmeY+g1jm5H7{Vxgt+gH91=`Le$vOUzDJnNb3`r$p|NKW}z%77mru46IYH)^_he!N65Tk#4L9o{O-xSVI*@ z5!#$Fx(ILhp~!*)GX01=Y9ONzS>CR3VjJLo!lhV)^Kxcri;Sm<)C9O)_3VoW+oSBAge2xivUBWJQZRnJqErH|2;B z8au>?|I4*@IP&`A$XazDK2YD@LD(Rq!d=haSrJ1-7*{wV5p^P*c%caiL_BS<8~t8Ki=j9eG4R}k#-JL}Rp9a;Fn*$^@1}PU^Sop5+Hz104 z^P$L{o1D?WKSh>jE7)iP=x`oOKh0 zJIgq6bpQ~7mAwX}F?j7#f(X=_sv6w*u#W*OvW02Xi#fo>$Z#G*yY5q4JL#5rN7uDu zAKUzJ$62omx$-V-r2w*&;>+=@#&oWkfj)6HW@ycAZ&+~S8gw7LnfMc7V& z-6mn>dVwizaQ(Oh;1IYK)I@}=)xh_^BJb2p&KKmBzM zoAv-0oWJP4;F$he7T|M?nD-#@i7c_M0|cGDp24*cnC9WxX^(6`3n%=vW0 z1}}k-UCKeQxb=9|REp!)OBlEAl8ot-UAdWQGgUWsxZ;Am~#{ z1Q0zKHDpZQvM$g_JB(M;B};q~ex(J;a_rP@J30KZo9a$mQpceU2LN2XkfHDh0K+%l z%(0SgKr4prP80VnBK+0A+=k~9&<+8{N9^zqpwXSn**9a{%*<$l>z57yOW*gf97{a& zFY9zlpSc3$cksaaEeN{U=^EgK+B1;yV^oiM z=Dhim0pP!JY<3;a{$m6@xSm#+T@jeN72$RC@f9lma7WS-2%T@XY%n|uFWNN@x3IRd zf#F(#bdh6iuzKK|)OR0I$ca95Cl+==498UUPyVGpPJJ-~~eHyGW+1wiaJT zS~-bbIJ8(c^YTWn!swse>`f0cd;n z5nEsuId0foJY*%i0EOI`Mg@uwLDYwDBAfeF>#zmEd!Q;uEy$&L8fw(`3Y1r zf)o*qzeSlp6opHLN_&jE6`ltk)K2aMmrAiT%ZmtsSwp~MVc8v;xbqPy)=Z~POyGYk z7XSzo>6&eB{wwP1ry{D?fA3N5tJiWIy`ACIVf8!x`q?+irjCD_#qpMe-7c=1;eegGQLsdpjA$@49tu#2}&IU$1C!tA_{;&vpZ3Xt;xD!&RI z$AWo62)3JKhzzk^$X*|jHDQPh?e35a8z6$gV2~o<2}+_q*Q7p zc&Jve+80+mA^Nlu5)VAX6Mw_1e+d7;?kl3&1w?pQAy~}PvW-|8dP(C3Cvoif9Q#~m z<_yBJl64d}ZWV+|{gLLu^3muV&-eH@^SjKrv&k2FWplUew)J%5WNzwYR)+ z*S(?w5Jw4jFUs1@fO31qsfMw;y!{Y%qLJ;jYUoUGA=Nygyn02$WaTA0;V@W6^mzwWbiKS|IL4vCXHUg;d9!j6ao0kaCrPg(Q~*G=Zn zrX9-t2GP>H9K&5Y_zO#0Irft)Ou%a{03l+(Jx`&ly-L(rT{S5ukcFIcB@JBf5}El2 z*T2db%$Bnv1u|yD4%gQucAhD zf1G4f0X&a;=ZaP-3HrLzqS`$elVK*j0&{%94lu_rK79l*NKlnIxR!x-f4HYy5l6Lo z{|_lYxhybFJn*Vv@(J!xz8WxD{!1%Ghf(#%-rVHsQ|_z1k0l6SJPfG>bJ(FLhbKU%@Pi< ze^|jb4L&v+fHxX8LM9~Lgs@@&P@;e-vtUA_hnDw zikQGjqcUP}Z6!@vuUIH22IaE5Yk|r4_erJK-pYz^U*H7X>i&JT(5SM0vpf~R$@r8b z!$PaWweilPLV@|z(8N{?bj4#BBHwUv!jyK>;pUnKz!DzX4gm)4)7i8)6vrsTzkIqz z!2=G-I}%Kf%u?mnaC4yrH$)%UR6>naR=g7!fcbecQ{8xE%V6>3<($c!VCz0hjkl%( z7IqCrk&%x4^D;3&Eqxr$FQW&xec;{1Y)f0v%KPgMu)IR9}PzMsNsjca;_fT?T zno7VBFH=}nkJM7Az~Oh;{QR?ocO1hn>l$w-p$`6hm|QKzOr_o))GPaIp^`g5Oe^1V#)b(kHxPE+Z-p6J4mH9$X9&p%x8V@({G5mC&l zzFYF+)W_P|!UkaVPBs|yD|a$30)_!AE68}hu?q!{u^1hg<{q3cO$Bg7K1qdZV&SuB zLM}%M$N8i_5|0Qg+CdVI`rbDrr*WgMM;tQVWl3bEB$$gAIZCrO!}flrIK;>>B*Bg( z2%B-Nm_EBrF%`g($1vwqgck&ahpyA(tYb#ZtrZ9gGZ75gT{D2;G>+fPmzxHY#(pj( zCsH3Nyl6I2y#1(u>hHTm4}{165Mhkrm7ybMnVr1wk$WF5^X>2K!AJRFiP}p&u&~*j zsZz`W7URxnF2hONvI+}u4@*l<>w6eHdfiRHgc!-Bh)f<1KETVXJ;x8S(2pgMpB|ex zIiL>3@m!3ant+KA7PF+h2zF7PnTa~rl$8qE`Z{J}(SVt>|ET~@#{m*v1TT`D9r^Y) zYG;R>i7+P?Wln=ZFG;=5i-(rKEGy2Ayxm6CYUBWC`DRZiffJg5$yN%Z6SK3whZhs# oQ~+nfa4@I5o+e;A`2Rir4PXBOPl@{kL;wH)07*qoM6N<$f(mV!Pyhe` -- GitLab From d9dcba9a39a468a0fe5cfaad99d6a7282ba2702a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:35:25 +0200 Subject: [PATCH 027/215] remove unused loading spinners, just have one --- apps/files_trashbin/js/trash.js | 4 ++-- core/img/loader.gif | Bin 847 -> 0 bytes core/img/loading-dark.gif | Bin 673 -> 0 bytes 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 core/img/loader.gif delete mode 100644 core/img/loading-dark.gif diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 82119a59517..307ac743a3c 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -4,7 +4,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); - var spinner = ''; + var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); var files = tr.attr('data-file'); undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; @@ -94,7 +94,7 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = ''; + var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; diff --git a/core/img/loader.gif b/core/img/loader.gif deleted file mode 100644 index e192ca895cd00d6b752ec84619b787188f30ee41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 847 zcmZ?wbhEHb6krfw_`<;O|Nnmm28JI$eppyow6wIav9YPCsa?BvZN-WeVq#)tWo2n; zX-}R!nK5I=v17+PJUqg}!hq_D2a5l>{aizWogD*Qjr0td8G$+#|4BI)r6!i7rYMwW zmSiX-W+hhSNI#p{aB=u^kJ9BqzM)+D@@g7D>_ZH z6>Nk>K2^#dec$hd&5{fSg)a9?JsDb3M<1+M;h^GLd*HyqYe$(ldZsj_W{3#!96X@l zAjsu&py5MupnEfu)0U^(0!(Kp*sL-QO$pql{X%Kq;`Av7E5z0lI$B?E`RzKdsAZ)9=nHHN!5+~JF4SY+VADb}iE(C2i8t1nx?>)BhL zPS>_TA<--6ZN7=uLx=rfr*28JR#UU9l!(BR!@3s} qR&*pBVEQRw*vTQWVY)*bLIMx~ diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif deleted file mode 100644 index 5fe86acabc41f3cd97b09eb626e5e9020d5ea28e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 673 zcmZ?wbhEHb6krfw_{0DL|Ns24v9{i`YZs6)XV$Em>gt^AY{h?4&PAz-C8;S2<(VZJ z3W-^X6*>8dDSDZCY55F_KUo;KfLay*bNji51UowhxEkphFf#&$bU;Re3};|A=Gb-T zpTQ~5Y~f@MD-Ovy?0z%SI9)dy9@-@`^WZkUgd>LvFX%=~Sl(U6ZYjaT?v?%A185}J zXhvjnOhD%N^(ZPxxA5%V@T|+F&?zt^!BA2m!N)aPYDJCA*3$cL6D8Oi6s}7=YIBy{ zq^hDN1T}~W*&s8HT}H~XscN4xYMc0GPFQ?v_cG2_MIIJIm-a*%!BuWe z8!pN-Ck4fRwv{)q(2?ptv82e-2j({xWOIx-b`_~>dp%DP`5^Jxr;$gk>~KO%Qpl9n zmYs4LkxrWDPdNxM%e}ObKdc5eCukDP7*=FsfX-1kG{I8*amn*Nx8@m09+!EbsOPk8 z?y2xKiwt?#xJ8N+cW*HLK9#Z2U;}68?)kZzUNCdmkj())=gz+moPsy!gvQQde0Qs` zU}{3g-NZR}O{TRvx*atTnUFAh8zV2vAqRokh7E_Votp?Vh8@EgV9c*hb-FS~^ST@d t$6EjG|h_^oWQ_f4N5p*002a;)W84$ -- GitLab From 0f904b3c9c9542d542ea52bc7683c79e6916fe18 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:58:43 +0200 Subject: [PATCH 028/215] use proper style for add icon --- core/img/actions/add.png | Bin 441 -> 195 bytes core/img/actions/add.svg | 68 ++++++++++++++++++++++++++++++++++----- 2 files changed, 60 insertions(+), 8 deletions(-) diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 25d472b2dc41bd4412507d422b579ff36abad887..13e20df6626b5c5b907176c9887386b19545c25d 100644 GIT binary patch delta 108 zcmV-y0F(c@1H%E3I|~ih000fw0YWI7c#%dYRscXrL_t(IjqQ>_3IHGs!>suKFUPaE zL1BU*=GxJ*FafQ?$O1`AGoWa$m)5^gAYc>b0_gq;XB>pVeY0UKMn?p36o*~&(ft!qZt?&(m=SZtSlZVCP9h;+%sp+jDi`EpPwHG6cZ!K z3;q55kuU?&)6+o)h~P7T_uad9axnby<42X2mKL}H@$vC-pFe-rL{lRKH{i^fGa8|x zf1znsR#tGVtgM^{GeAa021U-((=%<)o;{Xu1ArVgAb@KighfO|(l&42Yz8-A+qP}W z$TkwfLPA1mt5&Tth8wVd|9+Xu%1XbYq9PvGX z(7+c9tiHa!!7u|%O-*A!F+)l;vN$?AP6ojY(9zKW8Nfk`0nBD*W`QsRR8&-=fnw~W z7{Fv=V&V@B?GzB!(9nnkd5aVS7@!)EF(au45QPDtx=du=nI6{w0000 - - - - - - - - + + + + + image/svg+xml + + + + + + + + + + -- GitLab From 1f518025a3f5c1078b7b94e93f218b8ed58b556c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 13:20:02 +0200 Subject: [PATCH 029/215] standardize on 32px loading spinner, decrease size in CSS where needed --- core/css/styles.css | 7 +++++++ core/img/loading-dark.gif | Bin 0 -> 3208 bytes core/img/loading.gif | Bin 1849 -> 3208 bytes 3 files changed, 7 insertions(+) create mode 100644 core/img/loading-dark.gif diff --git a/core/css/styles.css b/core/css/styles.css index 7100b8c290d..6c9d00114a0 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -416,7 +416,13 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin #oc-dialog-filepicker-content .filepicker_element_selected { background-color:lightblue;} .ui-dialog {position:fixed !important;} span.ui-icon {float: left; margin: 3px 7px 30px 0;} + .loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; } +.move2trash { /* decrease spinner size */ + width: 16px; + height: 16px; +} + /* ---- CATEGORIES ---- */ #categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } @@ -661,6 +667,7 @@ div.crumb:active { button.loading { background-image: url('../img/loading.gif'); background-position: right 10px center; background-repeat: no-repeat; + background-size: 16px; padding-right: 30px; } diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif new file mode 100644 index 0000000000000000000000000000000000000000..13f0f64eab152fa4949476ed83ea24d6fd45a9bc GIT binary patch literal 3208 zcmc(iSx{410){WSH#f_@I(Toe1A#Fh0ikUO3N)(A|MEe#Hb)D$RZE~!V(gY zHH0;wB#;=QEg~+Ut<540VnboOp!Vnh-R**VTlUya*Erz3Ox5r(Ra4b-9?rw5bL!Oh zpa1`>4$t4$#WjHmFoCzg;`sRSql=4+NF?&}^Aie%V`F1FozBY2%EZLP+uM6)X6D0( z51%$JPUatx&D`)U9Ip`WIy*LKu(!*0A~RucLiWCt1fgBhf!!&9 z`EL+~y0B~Q;_1ap0qC*en151&W`5$afG@FZ^F@t1!U$f9@H1;knsr;|Y}ros_Sg2S zQ_V$ngWs`@35M>LBW#XAs~y4L*8F!r&Kj>xD^d)gV)ON`;Z7H0Z@Ad#mPy-p48A;j zMo1%NW%E3vA?h9)RGj4}C^b6-dwI&)l*riDSeZM8Kmk$cWtriJEgmUFMSr2`A_!wMfT{<`HADvzD~3@ z-K_?maNmZ8&zl!{uh(Zp+4R9BmlMMGGU zN#iwgPF4Gj@x;TT+lg}CgOa((5p{RrQ{YAav)DxZaZGpBD`2!!R{qYa{`1=Qtw+DS z;4))8W=>cN|K$R{jl%-|V+Wp-Fix_jUKKWaMiIWQLa{fnBzO3x2NRE(a+(REU74Y> zr;KeR##Clt-^xyZLh0-Mk_oPEbO-G$L`=mr5mclQ+P<5{A{TA%A&&iIMu0O>cbp&+ z5%Sn2Q49*TYzrIQm1UL#C3}!sS(IbJ9UWzLlv=H*Q=cpU>ZJZ~m%j6Shnm%I+H#3@ z*|$5X!eL0kmX(R6+Us9OpH<>5!!B2|%fFFVP(;VBZ7Rdcrac~<0Oo*}(ZPp5J^{L~ zFrK@-c^vK0T``Yc(~w=>N{`1%LyRoXUDBA#2bZl_(gBO^@1m>cC-xX~BMjRbn77-* zqzQ^}Z^L_?%kkMOsT-`%*LUtBzq6DzTgX6KtaLTkfn#t$e6@;Jd@XfQ;2>r-y|C?F~5g~v?vjC=Xr z)3~@v=uyWECKP2v{o--Z`tudu%a?xsw~GZ3*0oRo76B|~TSE;^rR9ch)7PBBzQ$`LR=+pwKQNU={lWVX-MI#6DR!wroj_f@4**T!S8vbC-qZkBW?^sbyhUu6bGN~USS(JL4fv7hG_n-4g$E#^16oqNvGT0G7rl$tDH{U`(%axJOEa`oZ##a~!0YbpkY8y=Qr_{(5Lj#seHo>!h z(?POe1*VZIY-ro>RVagA=pvw=F|*Z55k~242K+r)qvNCl@$G1h0GGLurmrbN2sL zKvi}AeCw)TV~Y#LyV0F;=A?x+S>L+thx-|qKONFDt{rib`Tu-bPua0<4wu z>%r<)^JBXD_;_Y4kS2W9?epJLE`S&-)&jC8$|k&eHg>$~jYlVDIx zR0Ys>YzpK-OEuxEKZ2hpqAvi;s$KF#W%5czez}qrRl+BLpsQK2n_5@M&g*1Rh&qtC zNDjf?UsUP%Q{8gi&-9xdBi{;2Ifm5;eYoV8oHpGGuZHcz}~edimhw zL+lCGHzNB9eg63Srz6>>lkl1`Wynm+@+c#8EqUzeoub3`7E4y)>;IDm5;rob#LIpm z`yeNe&VUfDwlp&qhr3a@mq7p%^8^|#Li8Cjfk1FLZj~odtHVhMqJtMaFa{Pz+T28p z@4y)KemQ(|Y7QrkxpKgpKVr{(9`TP1Kw7~BONy7aI! zKpruPp^;a4LV8Uf3~Rt?U~9IO%`Mn?`g?y@8R^zZV0Kdqhj@#G&xdd1Km7LTU0nDB z;}z|fxc7tJU#bRxqIPF8ed>hIl0kU#Kbe4xek(TmR0M`>^7@rTeXk<%b{}4>Oc-d~ z%Z$K?NG``e*>t~vzgoJJUn|GNE|iko1bMwn^8sZ&y{WlQBQ1)oag*5-Vfdh1P$7d# z>h9)bit~XBeWWrIZenlpscw=pKmjiUiz>u-_Y{MmbBKq11o<8q?dL0>b=`;s4Y8=R zyzAdR<;*6(1rF&L_ug!w0Z2wORfdAyW3=Bp?F)R|`^x>571Xz3(@#OXoXR zQ+t%C@QA;mc+AKKF{T;@-t{}ZRmDS{DTMLQ_)&B%R{XrZM{eh=7M|8I@(Hl0F7e(F zjg*;5O0#!nMmfR7{_gRmrWpt^cr}-j8?02yTq8-ax})`|YlqIU?I;~mb+z^=8{H!t zIQCQ!6!$yR8RSdDP5HK$G3#Msxk*sUsy^)EC8GGiD|1^4wzTo5dH?_Pad4o{B=0*%5VF%k0^Aq>0iVV{0kKJ} A6951J literal 0 HcmV?d00001 diff --git a/core/img/loading.gif b/core/img/loading.gif index 5b33f7e54f4e55b6b8774d86d96895db9af044b4..f8f3dff6fb955ebc02453352e59c845461723292 100644 GIT binary patch literal 3208 zcmc(ic~Dc=9>*`aH#f_@`t;sl1A!Wph)@ebAZ1k{K!AWO0)i|`j0&QnECN9wEFl3| zL)c7E5=acuiiitnwa8LHivx8*?NfoaD!A9N&-Qhm5A3{|H}m-8&Ageu^XHi}=gjB( z`+mPOhv)C>?2^C)n7~^A`0(L_gM-8P__#`?8WWcJzsWFR^U)MU7j-2%d`YGiylNwVS4G*iLqK zBYQRbEkw0fzh#>cmbh6CvbjboTY|rh#qWOH)t(!crWip*77i}qP8VaxovrnYq%GU7 zzC3$INF!xt@jRj->Mj~ol<6lZF+T`8CH#oH*Is zW!}g>e=eO>~e(~^Lf#6w!I$rJs$;! zs?tgx1GBM${zO}s=N@Uh-sKV#cC0+J;6GOgwwl z_z05>ordh`zpn}_>XhSt7}e3pKJ@JOhazDU7C{6Zq(S*BceAC`O4^=s-mV;W9$4yL z;7%!y(Zom-YqGRzUOPn1Zr8LQ?~t~hua7y(Zn((!ig&h#q1T0!h*a26;>Z>CKx49~ z4@)v_7$Ij@wv1m(JS4iEDCa#Wo{k*UbQH`0FM6KECgM+GIx1fQLv6CMcdP0?t7+MM z^otA5lP1F!goW^5&f#0z&*49@=Q#=EB&+MxVMAvW;cLqky90}J`fs{3@t85E$spR5 zNh*8H#9CrPWd?RHYx5_RyxuDr_0bP)qn(9_`!Q_<6)Aw?chXqo!uU?&@Q>yMI0JRV z2_g|8mt7pipioOUvB4dg=GjoPJ4wZ&91Cu3Ev=>0=tOOX9Ql_g4TstdZRcAxtRAx? zmuQ!LJCe%n`xIc#(v?2;T%&#Bfl6A@NZ!P4Ai!kJ zvcInJOsFFpOq(Mz;~kCsSs@P|k{4$nq01Z`2s!KmILSU-!Xxg=G|SFqfijj=n5r2^ zThs`VQYk6-P#aL)@#Yg~tM<6V(eu1|R*z!;#mj6RwF&PE2uqPT;lm|t{{h|J>|`0# zpEZh;!)04@hgVktl8N}~>1=*;W!gFHxoT!z(pEjI^7hMpzj@rlrte=naMy9i=;uLw zZ40~qASvjD`(*T_ zTiM;yxVTa1Uds$76sAZ0?0&%Nv!z~(7asrH`2q-QpDTbB0W4;7eKk$3^9kKzs6K^# zhrJ3E%FF)tdGskA^<83Nee%;#^&xRF<}{UoT|phA-}}>wjEqmT5TK2V1e+0Qg*c-| z>ZGK;yqa403*{s$Tfq2aT|A4BVwZZ*e2l;XJ%S)s#4aZ=ms6u(IsRtpgDDg4}Q7;JYIp>{*SJ6l)3e&(F@lnvuT+0y3 z1ez20aD51H4Mh~nU`GI%80+=9`4;*~u8e$UN$-AqZK;tEAOwu9w8kWV*&n&Iuh(+H zCV2L5I!NZMz%*8e^=;W$Y7=5(bYjZwwq;0;jbdYA?~7QUvFe{K$ocjW!D}CQQ<}D> za{PZ0P}OZe-5T&~IO0t4YH*{RIl01$Y*20a{(kypxxh@!U&*!N%Sv&uyn>jSyIxkI z0Bhv@I4>Da1VmweJGn3OJxH76pm(0RSV+llU$1tLff zPSkgX76@0PcL2(Dq?5lHyMtoa5V$PJYZ8aAgEIfKGZ=JV7Ub~;BVBJ}q~Y(UyDvL? zCm0nG)d93^8v=RILQVMU&*0~Y=ySlbD(75Lsk}mwSEgh|74r!o=we>vs?is)bK6)H zq8=p9lS8l;IDm5?3;* z*wbz<`ye-$&VUe|t|TKChdWTXi$MSra|K!*LiFx4g+Q=BZn+0hr^iVMqKD@^Fboz% zTHi!W?!XxJei?joY#JvHyKupqKVZ+iAM>9g)xbOK#aDctM3YfLxquDXn6cT_n?41v zr7zrxe@YPMj6g)t>Y7rK6SbxRtyNT1HI^OYN?a-6ybuUN{3rx$Fw6@<>Ox2t7(R14 zv>RX!Kpr%Wp^=w+Kn86$3~Rv&U~|?g>szqN#CQHKGSaP+z|@8mF7Xx#pABEnfB4PJ zU0nD*;}z}axc67RzEJl9g)JO1ee8tyf`S#y|JlQD=mzyc9q!?VfcV+ zPyvHV>geERi1UC8-K0`epTw@@QynA@KmjiU^D1oZ=qv(3PKdi*1o<8q?dL0>a#@cB z^|7c^yzAf2aHo>r0tfYsdvDg+#{I^jwZFEIS}*>D5Gng_5)gs@(SnqIx+0)=_xp`& z)A*b!YNrwv9`;`%9yYc{OsGo&@A{qItmdH{3gOx({3yB(D|+72DYxZlgs1h4JOV7L zO}y7fBV}ZeQtdd*C?~kc-)(D&Svo=tUg<;0305j)E|DZy)2ce^(yDiCK1zqw?W#^? zgIi=h*NzH;;vNp2LB7=Am}hetv+5_7nFggS@5U}(B8vCj7!oXx>H}S|ytvOIZASMR z{{)%vw@wC+r}BX}T^l#p0<+3-;jcj6jRRx4AD80=W|+5z literal 1849 zcma*odr(tX9tZI2z31lM+(&YVk%mZ}5P~KlG2s=WSbGzm0!x7^P##Mnh7t-jP!X0Q zk_SQ}Po-L1tlDK;6l?(>v)e5ZBQx4|Y-Q?nr@Px3?9h(3ZWr3^tj=`TP57gKr87N$ zp2wWee1GRRCwo_xahnw)5cxNPJbCg2L6DV|6`#+yw6v6!mDS$f9-JvFD^n;GQ&UrZ zzh5jCkByB101O60U0q#p_1BM>Cv-vP?&s4@g_((4_1L=L$(a91)0=J91Gas#R{McE znYG^9*0A5YZ>#;~+Wkn(W5B0^yELIYLP!K}mB~<)AM@1&nqekynuaEGqPrzoH|KodRXJy)%+w_fu3nE5>@Bd_b zqC$EQ;{c`T&?EsNO|igL9gC7Ygxv?aQUEXMq?~>wg{EyW;VcJ37CUF#HjrT=KQO_* zS>M9yydXk18D(+QDJ1>r);Lav_uYKp$T?4vr{Q$lTo&pKv^?(>L-)G2*lwH!Ah7k? z7oH<8h-(KTKt5V6$8gF)C7Io&P5=SjTh)=zV=E2EUhQZP##L8S{d%UK>>+y82>+FV+#^BzW7u3F)Bb>=lYQ%%j`F>ASe zo*cw@V#u6T`A2He;70mR(V&iV&-7{qP~=SRf&jm9-T{*ZeZ}$rd0#6c&fLG^xJcf5 z+p<`wJYgW+_s*V{uI$nMB;%8`S_3>PfGOj3Rq}@Cx^+j?rk92fANSFDBYnOqQ>Vdj z)(|$AhP4t&Lb=Gvo2#3Gl%9<=Gv`Mz?Po@P4iLF!x}GUWJICDlFk-hS^Whyh7x~VH z@0vD1>HYD4&e+~yzS*-sFR{9`{QEEZO1zg7>R&7cHts-6j!xHVdA8eI+ZlVzd%`es zJT@$#GX(gvCJ1oJN%yLBK}{V=V;seo;!w|Yte!W1%5qLNFWqvZW>h&IiH+oPT=b@E zPhGzv5=(Un*X>v`>%8h_nj^NdYcE6NHS_ifkCV$*D)Tqrbu`s;<=t<4 zAHNqNV?6(g<1PY-w@#I-WYFViz?9TrkMr)u0g`O`u|>T;k|2sV*YF^punvT;$SuTy{j3Gv)yqD!R_CF>yR)MzmmYS5v+~R zXAdD%ng9?df;wd8GxR#%3O+gz};Vo;)sK%Bj-q>Oq%R7JU-KD?vYu>#2UjaDo z&8$>5xW~?KPD_#XFToU1hIb*VOMidUr6iYiO0N|i-7s`T8!cFT`rN!^1Pt78J93i6 z5HI1wIM$94m{3SLDvISDe6$ZG1;eq_D9RTaaC>=cO{@Bs>$IlPCPJJ$h$)-3vzNUQ6OsN#_zWxey!_9%hxwH2_dEJi=yY|1c7nDm2_Lm!Cof8-R_+9UkS zcBE(o47yE)oMR(Q=dp1a2wTX5KvvGyLqlWTa7V&!A*|w|)ax~1_~aJ0=_Lilg*0iQk7#ZD EAHN$8j{pDw -- GitLab From 2a5776354251ddfeccc854d2d0af157575afa28d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 13:30:57 +0200 Subject: [PATCH 030/215] use history icon in Deleted Files template as well --- apps/files_trashbin/js/trash.js | 2 +- apps/files_trashbin/templates/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 307ac743a3c..87dfea491e7 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index cb5edaa2c91..66ec36df867 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,7 +18,7 @@ <?php p($l->t( 'Restore' )); ?>" /> + src="" /> t('Restore'))?> -- GitLab From 63c898c064233d08823e1b18ec7cb20185b1fe05 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Jun 2013 20:47:20 +0200 Subject: [PATCH 031/215] Make rmdir recursive for local storage --- lib/files/storage/local.php | 22 +++++++++++++++++++++- tests/lib/files/storage/storage.php | 14 +++++++++++++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index d684905bf9a..b08fd73ce19 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -39,7 +39,27 @@ if (\OC_Util::runningOnWindows()) { } public function rmdir($path) { - return @rmdir($this->datadir . $path); + try { + $it = new \RecursiveIteratorIterator( + new \RecursiveDirectoryIterator($this->datadir . $path), + \RecursiveIteratorIterator::CHILD_FIRST + ); + foreach ($it as $file) { + /** + * @var \SplFileInfo $file + */ + if (in_array($file->getBasename(), array('.', '..'))) { + continue; + } elseif ($file->isDir()) { + rmdir($file->getPathname()); + } elseif ($file->isFile() || $file->isLink()) { + unlink($file->getPathname()); + } + } + return rmdir($this->datadir . $path); + } catch (\UnexpectedValueException $e) { + return false; + } } public function opendir($path) { diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index 0e22f26ae83..fb3e05e66b3 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -258,9 +258,21 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(file_get_contents($textFile), $content); } - public function testTouchCreateFile(){ + public function testTouchCreateFile() { $this->assertFalse($this->instance->file_exists('foo')); $this->instance->touch('foo'); $this->assertTrue($this->instance->file_exists('foo')); } + + public function testRecursiveRmdir() { + $this->instance->mkdir('folder'); + $this->instance->mkdir('folder/bar'); + $this->instance->file_put_contents('folder/asd.txt', 'foobar'); + $this->instance->file_put_contents('folder/bar/foo.txt', 'asd'); + $this->instance->rmdir('folder'); + $this->assertFalse($this->instance->file_exists('folder/asd.txt')); + $this->assertFalse($this->instance->file_exists('folder/bar/foo.txt')); + $this->assertFalse($this->instance->file_exists('folder/bar')); + $this->assertFalse($this->instance->file_exists('folder')); + } } -- GitLab From fbbb6ef8ef67aae3c82109a6c311deb703f218a7 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 17 Jun 2013 23:41:07 +0300 Subject: [PATCH 032/215] Init dummy session first --- lib/base.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/base.php b/lib/base.php index 26e9595e869..fd4870974fe 100644 --- a/lib/base.php +++ b/lib/base.php @@ -288,14 +288,14 @@ class OC { $cookie_path = OC::$WEBROOT ?: '/'; ini_set('session.cookie_path', $cookie_path); + //set the session object to a dummy session so code relying on the session existing still works + self::$session = new \OC\Session\Memory(''); + try{ // set the session name to the instance id - which is unique self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error }catch (Exception $e){ - //set the session object to a dummy session so code relying on the session existing still works - self::$session = new \OC\Session\Memory(''); - OC_Log::write('core', 'Session could not be initialized', OC_Log::ERROR); -- GitLab From 46f97f4c389572eb1edac30d8cfa7086835c58fb Mon Sep 17 00:00:00 2001 From: mvn23 Date: Wed, 19 Jun 2013 15:36:48 +0200 Subject: [PATCH 033/215] Implement X-Sendfile2 for resume support in LigHTTPd LigHTTPd does not support HTTP Range headers with the X-Sendfile header in the way Apache does. Instead, it needs to be handled in the backend. This commit does exactly that, using the X-Sendfile2 header to send ranges of files. To accomplish this without breaking web servers that don't support X-Sendfile2, a new variable MOD_X_SENDFILE2_ENABLED was introduced to separate this method from X-Sendfile and X-Accel-Redirect. --- lib/files.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/files.php b/lib/files.php index abb1617c25e..5dd65e85a43 100644 --- a/lib/files.php +++ b/lib/files.php @@ -45,7 +45,7 @@ class OC_Files { */ public static function get($dir, $files, $only_header = false) { $xsendfile = false; - if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || + if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || isset($_SERVER['MOD_X_SENDFILE2_ENABLED']) || isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { $xsendfile = true; } @@ -170,6 +170,18 @@ class OC_Files { private static function addSendfileHeader($filename) { if (isset($_SERVER['MOD_X_SENDFILE_ENABLED'])) { header("X-Sendfile: " . $filename); + } + if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) { + if (isset($_SERVER['HTTP_RANGE']) && preg_match('/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/', $_SERVER['HTTP_RANGE'], $range)) { + if ($range['end'] == "") { + $range['end'] = filesize($filename) - 1; + } + header("Content-Range: bytes " . $range['start'] . "-" . $range['end'] . "/" . filesize($filename)); + header("HTTP/1.1 206 Partial content"); + header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " " . $range['start'] . "-" . $range['end']); + } else { + header("X-Sendfile: " . $filename); + } } if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { header("X-Accel-Redirect: " . $filename); -- GitLab From a25bfa92917075d1ab26649c4d6d5bea6150e623 Mon Sep 17 00:00:00 2001 From: mvn23 Date: Wed, 19 Jun 2013 23:44:45 +0200 Subject: [PATCH 034/215] Update files.php --- lib/files.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/files.php b/lib/files.php index 5dd65e85a43..123c87eb5ff 100644 --- a/lib/files.php +++ b/lib/files.php @@ -45,7 +45,8 @@ class OC_Files { */ public static function get($dir, $files, $only_header = false) { $xsendfile = false; - if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || isset($_SERVER['MOD_X_SENDFILE2_ENABLED']) || + if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || + isset($_SERVER['MOD_X_SENDFILE2_ENABLED']) || isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { $xsendfile = true; } @@ -172,7 +173,8 @@ class OC_Files { header("X-Sendfile: " . $filename); } if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) { - if (isset($_SERVER['HTTP_RANGE']) && preg_match('/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/', $_SERVER['HTTP_RANGE'], $range)) { + if (isset($_SERVER['HTTP_RANGE']) && + preg_match("/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/", $_SERVER['HTTP_RANGE'], $range)) { if ($range['end'] == "") { $range['end'] = filesize($filename) - 1; } -- GitLab From 372f261fe304463a67fc347b0e1c345653332ed3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 10:27:02 +0200 Subject: [PATCH 035/215] remove unnecessary exception handling --- lib/db.php | 149 +++++++++++++++++++++++------------------------------ 1 file changed, 64 insertions(+), 85 deletions(-) diff --git a/lib/db.php b/lib/db.php index a6b81aaba69..66900f46be9 100644 --- a/lib/db.php +++ b/lib/db.php @@ -180,28 +180,18 @@ class OC_DB { $dsn = 'oci:dbname=//' . $host . '/' . $name; } break; - case 'mssql': + case 'mssql': if ($port) { $dsn='sqlsrv:Server='.$host.','.$port.';Database='.$name; } else { $dsn='sqlsrv:Server='.$host.';Database='.$name; } - break; + break; default: return false; } - try{ - self::$PDO=new PDO($dsn, $user, $pass, $opts); - }catch(PDOException $e) { - OC_Log::write('core', $e->getMessage(), OC_Log::FATAL); - OC_User::setUserId(null); - - // send http status 503 - header('HTTP/1.1 503 Service Temporarily Unavailable'); - header('Status: 503 Service Temporarily Unavailable'); - OC_Template::printErrorPage('Failed to connect to database'); - die(); - } + self::$PDO=new PDO($dsn, $user, $pass, $opts); + // We always, really always want associative arrays self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); self::$PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); @@ -299,19 +289,8 @@ class OC_DB { // Try to establish connection self::$MDB2 = MDB2::factory( $dsn, $options ); - - // Die if we could not connect - if( PEAR::isError( self::$MDB2 )) { - OC_Log::write('core', self::$MDB2->getUserInfo(), OC_Log::FATAL); - OC_Log::write('core', self::$MDB2->getMessage(), OC_Log::FATAL); - OC_User::setUserId(null); - - // send http status 503 - header('HTTP/1.1 503 Service Temporarily Unavailable'); - header('Status: 503 Service Temporarily Unavailable'); - OC_Template::printErrorPage('Failed to connect to database'); - die(); - } + + self::raiseExceptionOnError( self::$MDB2 ); // We always, really always want associative arrays self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); @@ -760,9 +739,9 @@ class OC_DB { $query = str_replace( 'now()', 'CURRENT_TIMESTAMP', $query ); $query = str_replace( 'LENGTH(', 'LEN(', $query ); $query = str_replace( 'SUBSTR(', 'SUBSTRING(', $query ); - - $query = self::fixLimitClauseForMSSQL($query); - } + + $query = self::fixLimitClauseForMSSQL($query); + } // replace table name prefix $query = str_replace( '*PREFIX*', $prefix, $query ); @@ -770,60 +749,60 @@ class OC_DB { return $query; } - private static function fixLimitClauseForMSSQL($query) { - $limitLocation = stripos ($query, "LIMIT"); - - if ( $limitLocation === false ) { - return $query; - } - - // total == 0 means all results - not zero results - // - // First number is either total or offset, locate it by first space - // - $offset = substr ($query, $limitLocation + 5); - $offset = substr ($offset, 0, stripos ($offset, ' ')); - $offset = trim ($offset); - - // check for another parameter - if (stripos ($offset, ',') === false) { - // no more parameters - $offset = 0; - $total = intval ($offset); - } else { - // found another parameter - $offset = intval ($offset); - - $total = substr ($query, $limitLocation + 5); - $total = substr ($total, stripos ($total, ',')); - - $total = substr ($total, 0, stripos ($total, ' ')); - $total = intval ($total); - } - - $query = trim (substr ($query, 0, $limitLocation)); - - if ($offset == 0 && $total !== 0) { - if (strpos($query, "SELECT") === false) { - $query = "TOP {$total} " . $query; - } else { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP '.$total, $query); - } - } else if ($offset > 0) { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP(10000000) ', $query); - $query = 'SELECT * - FROM (SELECT sub2.*, ROW_NUMBER() OVER(ORDER BY sub2.line2) AS line3 - FROM (SELECT 1 AS line2, sub1.* FROM (' . $query . ') AS sub1) as sub2) AS sub3'; - - if ($total > 0) { - $query .= ' WHERE line3 BETWEEN ' . ($offset + 1) . ' AND ' . ($offset + $total); - } else { - $query .= ' WHERE line3 > ' . $offset; - } - } - return $query; - } - + private static function fixLimitClauseForMSSQL($query) { + $limitLocation = stripos ($query, "LIMIT"); + + if ( $limitLocation === false ) { + return $query; + } + + // total == 0 means all results - not zero results + // + // First number is either total or offset, locate it by first space + // + $offset = substr ($query, $limitLocation + 5); + $offset = substr ($offset, 0, stripos ($offset, ' ')); + $offset = trim ($offset); + + // check for another parameter + if (stripos ($offset, ',') === false) { + // no more parameters + $offset = 0; + $total = intval ($offset); + } else { + // found another parameter + $offset = intval ($offset); + + $total = substr ($query, $limitLocation + 5); + $total = substr ($total, stripos ($total, ',')); + + $total = substr ($total, 0, stripos ($total, ' ')); + $total = intval ($total); + } + + $query = trim (substr ($query, 0, $limitLocation)); + + if ($offset == 0 && $total !== 0) { + if (strpos($query, "SELECT") === false) { + $query = "TOP {$total} " . $query; + } else { + $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP '.$total, $query); + } + } else if ($offset > 0) { + $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP(10000000) ', $query); + $query = 'SELECT * + FROM (SELECT sub2.*, ROW_NUMBER() OVER(ORDER BY sub2.line2) AS line3 + FROM (SELECT 1 AS line2, sub1.* FROM (' . $query . ') AS sub1) as sub2) AS sub3'; + + if ($total > 0) { + $query .= ' WHERE line3 BETWEEN ' . ($offset + 1) . ' AND ' . ($offset + $total); + } else { + $query .= ' WHERE line3 > ' . $offset; + } + } + return $query; + } + /** * @brief drop a table * @param string $tableName the table to drop @@ -1124,7 +1103,7 @@ class PDOStatementWrapper{ die ($entry); } } - + /** * provide numRows */ -- GitLab From 3f20a080fedd47e2614c44ebe1824f2ee46bb767 Mon Sep 17 00:00:00 2001 From: mvn23 Date: Thu, 20 Jun 2013 12:23:25 +0300 Subject: [PATCH 036/215] Revert most changes for testing --- lib/files.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/lib/files.php b/lib/files.php index 123c87eb5ff..20ad2405fcd 100644 --- a/lib/files.php +++ b/lib/files.php @@ -173,18 +173,20 @@ class OC_Files { header("X-Sendfile: " . $filename); } if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) { - if (isset($_SERVER['HTTP_RANGE']) && - preg_match("/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/", $_SERVER['HTTP_RANGE'], $range)) { - if ($range['end'] == "") { - $range['end'] = filesize($filename) - 1; - } - header("Content-Range: bytes " . $range['start'] . "-" . $range['end'] . "/" . filesize($filename)); - header("HTTP/1.1 206 Partial content"); - header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " " . $range['start'] . "-" . $range['end']); - } else { - header("X-Sendfile: " . $filename); - } + /* if (isset($_SERVER['HTTP_RANGE']) && + * preg_match("/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/", $_SERVER['HTTP_RANGE'], $range)) { + * if ($range['end'] == "") { + * $range['end'] = filesize($filename) - 1; + * } + * header("Content-Range: bytes " . $range['start'] . "-" . $range['end'] . "/" . filesize($filename)); + * header("HTTP/1.1 206 Partial content"); + * header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " " . $range['start'] . "-" . $range['end']); + * } else { + */ + header("X-Sendfile: " . $filename); + // } } + if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { header("X-Accel-Redirect: " . $filename); } -- GitLab From 59fa3055e1e2f4f070a0443bcc0f06fcd6e892eb Mon Sep 17 00:00:00 2001 From: mvn23 Date: Thu, 20 Jun 2013 17:46:36 +0300 Subject: [PATCH 037/215] Reviewed code for X-Sendfile2 Made some small changes which might have caused a segfault on ci.tmit.eu earlier. --- lib/files.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/files.php b/lib/files.php index 20ad2405fcd..f5dffd970d2 100644 --- a/lib/files.php +++ b/lib/files.php @@ -173,18 +173,18 @@ class OC_Files { header("X-Sendfile: " . $filename); } if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) { - /* if (isset($_SERVER['HTTP_RANGE']) && - * preg_match("/\Abytes=(?P[0-9]+)-(?P[0-9]*)\z/", $_SERVER['HTTP_RANGE'], $range)) { - * if ($range['end'] == "") { - * $range['end'] = filesize($filename) - 1; - * } - * header("Content-Range: bytes " . $range['start'] . "-" . $range['end'] . "/" . filesize($filename)); - * header("HTTP/1.1 206 Partial content"); - * header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " " . $range['start'] . "-" . $range['end']); - * } else { - */ - header("X-Sendfile: " . $filename); - // } + if (isset($_SERVER['HTTP_RANGE']) && + preg_match("/^bytes=([0-9]+)-([0-9]*)$/", $_SERVER['HTTP_RANGE'], $range)) { + $filelength = filesize($filename); + if ($range[2] == "") { + $range[2] = $filelength - 1; + } + header("Content-Range: bytes $range[1]-$range[2]/" . $filelength); + header("HTTP/1.1 206 Partial content"); + header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " $range[1]-$range[2]"); + } else { + header("X-Sendfile: " . $filename); + } } if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { -- GitLab From 7fd45e2875f3f62f4bff3b107076578f15665366 Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 21 Jun 2013 04:24:40 +0200 Subject: [PATCH 038/215] Optimize pictures with optipng and scour --- core/img/actions/add.png | Bin 195 -> 184 bytes core/img/actions/add.svg | 64 ++---------------------- core/img/actions/delete.png | Bin 334 -> 262 bytes core/img/actions/delete.svg | 66 ++----------------------- core/img/actions/mail.svg | 96 +----------------------------------- 5 files changed, 9 insertions(+), 217 deletions(-) diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 13e20df6626b5c5b907176c9887386b19545c25d..1aac02b84544ac0e8436d7c8e3b14176cd35fb88 100644 GIT binary patch delta 110 zcmX@ixPx(mgajiq0|SGqZLSiKVlH;_4B_D5xc$)o!9+t_Z?*uR5ZC|z{{y8$4_&SU zQj8@*e!&b5&u*jvIpUr!jv*Y;$tej5DfhaYUcDCN@a<}3WDqRn?ws&BdNxoAgQu&X J%Q~loCII_8B7Xn? delta 121 zcmdnNc$jg5gd_(W0|SHn=l_X7ilx}eGlT;OYB*9lCK}j=I(WJ`hFJ8zo#e>Hpulr@ z&5!^3$2aeAOl(qkcI)Cs1ID$7PB3|T8!yOMH~rfFK!pV1XG|~tai+_(9IRKF9kS>& Z%Ml$3Vc}J4dVq#Ac)I$ztaD0e0ssI?Ed2lg diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 6db768d9a42..250746e1660 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,62 +1,6 @@ - - - - - image/svg+xml - - - - - - - - - - + + + + diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 6362903937c001f3bd5ebac47fe8ed48195c66a9..fe826a14dd2f14c3e50e57bdbd1d0fc583aea929 100644 GIT binary patch delta 189 zcmX@d)W$SHLV|^vfq~)e-A6${in-XyGlYYK*WG`LR|m<|9_Ez;VJ{e z6$}KF;`K2(0MyA*666=mz-?Q$;qKGF%p20S0ma-rT^vI=qLULG7!tROI18K=xp?v7 zDu$F5S%~(8kOhecVUkg@=Q|gP?+=1#b(O1*O6c=(aL3 Yy!2Lk&1A~I8fYYgr>mdKI;Vst0Pl`KW&i*H delta 261 zcmV+g0s8)i0?q=E7#Ro#0000V^Z#K0000DYLP=Bz2nYy#2xN$nFg<_ENklY9d7)C*(rw46x?ldoEYoV%q=6IV6hxQ4qSQ(Q_6jU zY(aPi{~BW`RR#&r%rG|wiF?xBB?eMza0be;Wd9X*NAR`kGcC~@w_00eyvnF>00000 LNkvXXu0mjfPWf)3 diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index 08ea381f378..8024d402a85 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,65 +1,5 @@ - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/core/img/actions/mail.svg b/core/img/actions/mail.svg index 6e8a4bd7f6b..c01f2c113e7 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,96 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - + + -- GitLab From a06d901e3782a58f3f98bac4eca81430e56089ae Mon Sep 17 00:00:00 2001 From: Roland Hager Date: Thu, 13 Jun 2013 09:18:50 +0200 Subject: [PATCH 039/215] Fix: The check if upload_max_filesize or post_max_size is 0 fails if only one of them is 0. $upload_max_filesize and $post_max_size need to be casted to (int) to match "=== 0" --- lib/helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index a315c640d1a..1860a55fc8f 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -787,9 +787,9 @@ class OC_Helper { $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); $freeSpace = \OC\Files\Filesystem::free_space($dir); - if ($upload_max_filesize == 0 and $post_max_size == 0) { + if ((int)$upload_max_filesize === 0 and (int)$post_max_size === 0) { $maxUploadFilesize = \OC\Files\FREE_SPACE_UNLIMITED; - } elseif ($upload_max_filesize === 0 or $post_max_size === 0) { + } elseif ((int)$upload_max_filesize === 0 or (int)$post_max_size === 0) { $maxUploadFilesize = max($upload_max_filesize, $post_max_size); //only the non 0 value counts } else { $maxUploadFilesize = min($upload_max_filesize, $post_max_size); -- GitLab From 909d279e55783a5a4499e94a8959fa1745687e42 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 23 Jun 2013 17:49:38 +0200 Subject: [PATCH 040/215] Add a CLI script for manually triggering checking a folder for updates --- apps/files/triggerupdate.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 apps/files/triggerupdate.php diff --git a/apps/files/triggerupdate.php b/apps/files/triggerupdate.php new file mode 100644 index 00000000000..0e29edbba35 --- /dev/null +++ b/apps/files/triggerupdate.php @@ -0,0 +1,22 @@ +resolvePath($file); + $watcher = $storage->getWatcher($internalPath); + $watcher->checkUpdate($internalPath); + } else { + echo "Usage: php triggerupdate.php /path/to/file\n"; + } +} else { + echo "This script can be run from the command line only\n"; +} -- GitLab From 073464af0bdb21703c01439edc9949519450328f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 24 Jun 2013 02:11:03 +0200 Subject: [PATCH 041/215] [tx-robot] updated from transifex --- l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 20 ++++++++++---------- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 20 ++++++++++---------- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 6 +++--- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_encryption.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 20 ++++++++++---------- l10n/hi/lib.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 20 ++++++++++---------- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_encryption.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 20 ++++++++++---------- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 20 ++++++++++---------- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 20 ++++++++++---------- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- settings/l10n/eo.php | 1 + 534 files changed, 1111 insertions(+), 1110 deletions(-) diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 32bca2fc690..c398a0246e4 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 860a7e23180..55f760e7636 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index fe07d244c73..de957a7488f 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index edf31a623a2..b40c59c04d3 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 115c42f3030..d6e2b4fbc03 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index a178417fdb9..c7c29dfd6ef 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 9e2425a55f6..bdb9ab4a5df 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 1ab26d97a92..4f23c0685fb 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 57b7efd1c37..02611d5ea56 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 1e5155943cd..619e35eacdb 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 9f4c03a001e..cf98a316b2a 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 249d45f9017..061e87596fa 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 6e512903544..4272114999f 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 642bf755b8e..a75fe8b7ceb 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 0b57dedfe35..84288fa5381 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index e028666c795..6d547cbb86e 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 16edb484167..f82d357fc1a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index f03c0dc869e..1f26904e058 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 685bf7157b5..a1b42385e27 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 227bdd2850b..864c9a197f8 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index ffd9f2cd795..4d58cb46e68 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 3001c3629ad..e99376a69df 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 3b20eede628..42dca32f470 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 9cb201fab46..c06bbc67834 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 6eb90fd311e..aef49cdf192 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 33c88cc561e..d261ab9829b 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 66dbd4471b0..e778129e058 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 01cccc581ba..35eea288541 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "Ime" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index eb11548ec08..8313a691598 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 29626c54418..65c292ce758 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index dd918d1123a..117df69d65a 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index a342076a786..60701995dd3 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index b2eb2d5f829..123411a7b0c 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 4b733e31a1f..117dbe49505 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7fc48cb89f8..9e3f24edcc0 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 59c0d2c393e..9598ee3976f 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 0423b864e0c..98378d83298 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 6c654304f03..c63c411cb90 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 3eeced90d10..8b6e5f3c387 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 68ffe77930d..d4bf2b7854f 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index e6f87f1bf12..3848eb6d5c7 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 8649fdc22eb..55c2c697ded 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 48b0c4694b3..fc3699d5f1c 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c1368e90157..2a07fc79877 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 4d26d2c62ce..6f9d2b6878e 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 561d17f649c..4a531ca226f 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 298c44e40db..04aa08729fb 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 697fe7e8b8c..25b74992508 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 050f7ef1eda..0345e79343b 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 50d0312d54c..64dc2bb5c6e 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index e018fb2e1e8..5c9984da1cb 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index c7b59395d2d..6d6121654ad 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 14407b758e3..1377bf961f3 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 6dbf0f2bb9d..ca9de6f6284 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index e5f7e365290..71aa65239b3 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 06f7ea0740e..a15a226c953 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 55996820697..c377f419e92 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 1f15ca7f2fd..4cade56a289 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index ac9194b1d08..18dd68113d8 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 2a80c15787b..581beb4cd12 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 7899539b41e..75efc18232b 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 6812c76f9d6..00832917629 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index a6544b415af..c003ef95c6c 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index ca29a3671b7..f2c9aed079a 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 879319a00cd..5b2e8e6384e 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index fefd2887130..0ff8d022171 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 6ad12b3d1e1..576421b685c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index f85f8027cae..dc43b611af4 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 6e7c423c694..2bc71f77792 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index eb08dedc15c..0b08d3ec669 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index e265219bdc7..42eece2f04f 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 103dcb089c0..96b220f783c 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 55088e34de4..36b3bef467f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 25732ad8095..70587360217 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a90de2e5710..926b29e9e4a 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 579da15131a..56b022398ef 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index e91129213f0..5ed822aa071 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index f65b7ec078e..66c78d33922 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index d5d3d51436b..81e8c56df1c 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index c76e96d7185..82015f9334f 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 99d133916ee..2d518783204 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 500d191aa2f..e85671da2b3 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index fee389f2293..dac0bd47d18 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index c14015da6b6..9a560f8a214 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 885b711b109..4a20f56c6d1 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 3a2ef18fa6e..a6994d65cc5 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 6c3b85317d4..657197abefe 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index df6428d88dd..3b851c78bf9 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 42e51d17563..a4f6c10fb0d 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 8177b199608..cb878138751 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 5777cdd3321..f01566f827f 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 971503a9de9..b64e7856584 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 85c4e689020..05cb595c9c5 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 64c09e7b0a8..15649d93ccc 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -388,7 +388,7 @@ msgstr "Komerca subteno" #: templates/personal.php:9 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn" #: templates/personal.php:20 msgid "Show First Run Wizard again" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c4bcc470d60..e953e2d945c 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 1902b75b3f7..29a7224780d 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 4a62c91aafe..263a4e67178 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index bc7a0074671..0cfe0c46b4e 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 7e63211cb91..3a3c6f5e991 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 564f7fe77e6..2582a5201b1 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 7f61b3cd18d..b5bc48adc4b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index ecd2d2531bb..24ddc57c9c3 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 3950482a676..b20c0aba34e 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 6d368d5c28f..d018c1b5cf8 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 09b89948f7d..1a7a0c63084 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index fbd62a0bc33..d51c906e218 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 210deed54a8..1a865b450ce 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index f9a6e8e48a9..b8de0fa2ec8 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index fb068648573..df8a253c96f 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a65c6938b47..c8b38554ec0 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index cd1d016942a..0efadedbd21 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 565fcee07d7..27439638023 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7edad546966..26a994f782b 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 850bcc9e20c..ee631b2e6b1 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 068c59e562b..a17219effa7 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index c1bf93bc505..8ff982f35c1 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index ed5d175f00a..05732a0ea80 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 39709cdce6d..628bc4630ba 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 081a6640bdd..f17a24269c9 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 668c1dca976..5fae1f5ab66 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index dad362710e6..71a56641ffc 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 498d63c004d..6ac8b610896 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 54f79b7a5ee..f51ede8a405 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 292b70934d5..139d9a427cd 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 192c4db4f91..d2ca767e09c 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 8bbc22cf879..e0bc61f672e 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 358110611c2..23daa532bd2 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 0dfc03cae27..89dd632e41d 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c515b575403..611afc6aebf 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 5fced55beb7..9bc2bea3ff8 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 8c817c32543..4d628119af3 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index a755f4f5666..3863cf9e72c 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 46e36787c1d..6a8fd0b9f5f 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 51503965d04..ce3accee37e 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4b4da32072a..7c55891d3ca 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index b51da7d09ed..9eee6e8907b 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index be751175939..7aedd0589b6 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index d85978f5ebf..f69eab70d29 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 70a62b2d7fb..758e57adcb0 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index b320e403df2..84f5bcbcd3b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 2e9420e9350..a86151e8b83 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2f586069ddb..b0f95a5aee7 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index ada28baaaee..b79395deede 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 660d77a888a..b088352a08e 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 4a6ea20c4b6..36a6581e471 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 9a6e4478545..f6fb2dafb1d 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 554adaf2cb5..ae2b0b9a4ff 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 2e1450f94fc..be9698ba7fc 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index c3beef89fe9..06e5578a190 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 5527be6de9e..989f270e495 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 01fdc6ac349..72505e98ebb 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 715f16fa917..6ebb3eb0e18 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b8308043723..cc3b05d9a3f 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 59c1ad2fa4b..3552cb78183 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 15:44+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 11:37+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 9d74f390668..4ab7db41a60 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 48147dec374..ee8cef6fef9 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 736e3ad3ea8..bb31bc0fcf5 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index efdce0acdc8..2aabdb2b0c6 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 81c1b0ce8a9..5f19076e267 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index c04e9ab68b3..a20319aebd1 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 268f1c190b3..1b6b61071c0 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index b1ab85d6ad8..60d2b7d9710 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index d696d30b3b0..a416f26a931 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 6fba6c3e39c..0d54c67f7d5 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 42426e1b54a..e5d5c765900 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index fc61812aa4d..3b0b408ffab 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0a87f1303c8..e85c780f7e8 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 085aafb5604..3715e6bd327 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 43e7d6aa0dd..3df47099d8b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index ba3e62ad631..e96a80b4d68 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 21dcf04d1b3..d5ad04c08da 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index af204c0f372..be362ff7841 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 102b6ef250c..588600f7904 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index d6ce36cf682..c253f00193f 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 66ef8f4764b..652f46b6e9f 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index da482a2ddf6..555a98e65dc 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 036a93820b7..3b9075a1604 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index a5db5b38d2d..3d67c200fbb 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 1a3633fd518..f3722724094 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 08361ccdaa2..75bfa8d5ce7 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ee230d1dde9..56651e4d4b7 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index cb1e632bd82..1d3f6d4086f 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 36f80d4d0e6..971df918c17 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c7b8aaf2b2a..febc9de51e5 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 174e4883cd3..4c60a8191ad 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index dc153cda44e..138501851ca 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 21e2565a16f..606b667015e 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 1e8ca0029a2..2ffedb91713 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 0794e6f7e79..7d2ecd693d9 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index d1f7a330323..42e10fd8dd6 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 13f0d765f3f..3002d705a32 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 77fa11c625d..f9055e58232 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a63d5125b32..daf5ae5a5a9 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index e5782b072f5..788b90924c7 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 402caf07010..21408dbd844 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 7ec68cc1dba..ca8c795818c 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index c6dac4fa4b9..bbfd0f596b4 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 9f91130c7e7..c9cf35d2710 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 16c5f27a67a..cd4cc4672d1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 84358792aba..e8ad11f06bf 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index df9d5da4915..adb01ea5644 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7afc8edc784..9293cb6b7a1 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 4b75571ef3c..92191e0d87e 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index ccbc74cebe0..4c837188656 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index be4d44e3871..ee409a45517 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2b66ac528a1..8b4d51b3992 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index e8080320565..6bfcc1b38e0 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index c8646f17bdc..d8fcd6c3e67 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index f9fe3c405e6..b42a7828106 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 182c6517a21..eaa34b451bd 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index a45396a6066..b38f72e1323 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 8ef37ab40bf..cef19e21c00 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 51189f43453..d474316df6d 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 89fb33d04fb..96789b3bcee 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index bd3f57ca9e8..0f189d76a61 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 253f7b5859c..74718f354c9 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 151801b3877..ec59af96389 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index d5a6ca20a4e..9f5ae9949f5 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index c575418c8bc..910a7ef89c8 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 23:02+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 11:37+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 6ad7197145d..e3edf01b280 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 8cc1ed552d6..b43e6775fe1 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index dd53342d793..ebfe0b719cb 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index cf630c95574..2eb14a89395 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2bb7d1fddae..ce9bdd27498 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 7c4cafd37fe..18ee78296ce 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index b6ce1c103ea..8ddb4e207f2 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index e7cc26dbaaa..9a0bcbdebf9 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 9a111aade3c..d7edf082554 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 2247526768b..dec92778533 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 236a596de17..7507dc2a561 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 8c2f3e86b3b..52c05faf490 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 4c6d73bce44..d933dc99e03 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:17+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 071428283fb..be0d7fd883f 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:18+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5f32547d65d..8376cb4a9c3 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index fe475244289..081bc9753de 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 92a9a0042b5..adcde5d6928 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index fba278fbf56..3411ed83d7a 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 3c88ce9f5e1..8b4f1723ae1 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 44f7aeb421d..d0e9b9a6f9f 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 586624d24da..3f95eb2567a 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 8d50f8ceb64..ac9ed6ff991 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 635d1ce9364..2996b82ca3d 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index b3e7b6251c0..a2c52bc259f 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 0497da136b2..f3e5c934694 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 475e59f43f0..b15f6a22347 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 2e5494e0786..f9c9596a54e 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 08edd0e7717..2150277bd68 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index fc26d6547ac..edb3c357102 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 896d6141b7a..29d0fe0b4ca 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f9e365f4cb1..b28408ee00c 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index baa68a5d969..b785ac41143 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 7b6e0fcf81b..cf67e3b5420 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 5028e69d3bc..51790664771 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index f47de14fc05..6f1a44a4c5d 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index bb2deade720..40890874b47 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index b32e8fd18a1..d1dd01b87aa 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 574198621d3..9befda58c86 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 884a95ce23c..e2611a33adb 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 03e7484922e..afee93f5661 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index f392b9a2bb3..b1d9cd9a0c8 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index bb4ccba1447..9a1fceea76f 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index c1c07acc364..6b2848264d2 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 4861e84dd8c..4d8a291bdaf 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 8c56ed5ccc9..8ffa1b07a58 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index ea28e3e618a..70ed7c78a33 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index de3316ccb8d..2409603b9f6 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 57d4cfa9f44..af896f13ff2 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 56a0544702c..977a9b00d5e 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 5f2e3c973ad..35500de21e4 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 26435bbeb4a..f65cdffbe13 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index e86fa91da09..56596735f38 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 860b85012dd..15174f63fb5 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 3b3b115f2ca..42b72c4d0d6 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index cb547268422..75dd1a33d72 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index ef7b93da0a5..a86d6c54f86 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 4b285ab493e..0e6a6be24c9 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 5091aef9775..e07252b4493 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 5f8cb17b08a..c2bbd78b9fb 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 760a9153301..fe4235e04ca 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index ee926979c5e..4f11b26292b 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 4199be9049a..6f3082b2a7a 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 9ab8ffd9a8c..54a574265ce 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 206479ac070..94ad8cb8f0e 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 2789d7b7a80..5e9cda49547 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 9ee5208ae17..5aa81b0f939 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 6fa0e9263fe..d5d3c8f78de 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 2ff427ad791..da9796a65e0 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index a9f8f2117a8..bfbd8b5697d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 58b84f58814..53690f51e2e 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 54bb96f81e5..c6ddabb209a 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 49230b0536a..3c81d95dc37 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index a33abbf5f05..dd600088e2b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 925a8bbca01..8e6ac98a00d 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 5e3a3a14497..b7dfead8586 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index feb78d431e2..e83d10fb398 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index c46a6d0e9f9..07d41bd33d4 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index beb4294b6fb..4d477c65528 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 3e7357691ac..da91e6171b3 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 114e5abf8a2..1e0297f3350 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 933a4375586..fb2b2340b5b 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 093ab14f747..cbada572d50 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 61bff8a5029..b7e57a4b0fd 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 66e973beafd..59d008fc6c3 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index ea394a4935d..627ef51348e 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 26aa1e8ef9e..ad6eb0e9543 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 0edf5671161..2a11c97d9e9 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 4f897d55aee..d21e4b38513 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index b52da0d0066..83a9e025800 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index d17d9557eb6..a75e420a5f8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index f61b5e00c41..e223e716a0f 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 8c77c89e42c..85036371313 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9a27e200bf3..a6e999fadd3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index d8b9b5dc11d..10b2123f0c4 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 3c8f2aa06c0..10c6926179f 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 83d13f10db4..d25af1679fa 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 9f65c867833..e762665c65b 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 62a6a8373b4..84d5779ffa6 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 2d8bca70f72..7ed37c731b6 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 7147a40576e..6d3e3d5612b 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 3c01f722a99..069da55a56d 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index a97047e26cc..3e7044b861a 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index dcd0d2a8387..a1b1f3a506b 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index ce49d178ec2..73abbe6bab0 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 0572159a899..7ce6f7d1ca6 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index e91623ad319..b99c2401bdd 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index ec393e1e73f..8acb2a99d4e 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index b9f643377c8..66315ca28d3 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 6939727b72d..60d9f376eb0 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index a8982c06c13..a9e8eed79bc 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 6c5ae4ea4e8..ae6aacb3fe7 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index bbff0da53e4..475b0d14536 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index f12c879974f..ffa9b549520 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 06a7b00d48a..0be95c38ffa 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3e561e19101..790fd15b7f1 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index dfd37cf07cf..11467344dfd 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2082b2f5c40..9d193891b64 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: adbrand \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 7fa9637f660..2ba01b17e1b 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index b1debfb920e..9f95828bab7 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index cafee1ddc44..9e1afe59d24 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e4acd8f8cc1..37ea0f2de53 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 77e91e65af4..a88656b6e23 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 3af3698e94d..b3681a53f84 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index d6d49d02cee..349c1362ef2 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 5794f12e617..94a6a865ad1 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 55e2b73bde8..37f359406a5 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 765c56ef01e..f84ed97145b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index aa259b4aceb..4c8a82a01f7 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 4b2ba0447e4..124d00367cd 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 9384968c901..4fc64bdd418 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index fc37e04afb2..bc93879564d 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index f06e5579c6e..24aaae7b26d 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index a192b78168a..4288c6c78de 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 23881e019af..b172b48763b 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 576750ecf3f..79a0a8758f9 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3d983423297..15171ffb844 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 68335dbe860..7bec6fd8fa5 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 0fd016810cb..82b47f914bf 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7bad020fc36..19531140219 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 81e03694b4c..54f3f770e96 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 198d4275691..0f500aea479 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 66eae57affc..64bc1040209 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index d2e2e43cea5..7640519ff22 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index e4a61639257..24824f082c7 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 43ba4ff8388..890d5212963 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index edb41f3ac1e..6322f8c28b8 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 28fe7fd0add..460b639e201 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 506ae5ff295..7a4dff9c01c 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 3bcf6a527d2..50c5aadb2d1 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 622cb8655e4..75348e56629 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 111c365001d..f8c4f8dbd5a 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index e56729f2f8e..5cac6b8f5e1 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 4f13e0154cb..1d0d84a9189 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index f4405e5b6bd..55ff3b94f33 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 3f444ef507e..77ee05514d3 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 520d6d88481..86f3900bb83 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 1b242290ea0..ce49045dda1 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 691823c348d..fcb6f3561fb 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index b028c90f4f4..9d180db2dbe 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index bebf898e0b3..06100cbf5a6 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index fa3e6928c05..e3b1b7c5cc5 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 3f7f5879020..72c2905460d 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index d85b0c8389b..ae37df9f776 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e85ace4ae48..e0fdf881a65 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 91389893f8e..26818e72cbd 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index d8234362428..d85aec6f5ff 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 59fd6896610..aa7bc1338ff 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 060ac239f4f..5a804943f1b 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index de32188de6f..377a8bda2b0 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 40a8bdd32fa..5bd8868bbaa 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index fd5933ebff1..5d3ab87f55c 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index a332771004a..bc02a26ec27 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index b7d9aaabf9f..2006098ebf6 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index a81b3adc4cd..725a9badf64 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 301c4c62aa7..0261341dcc1 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 25777c85f34..ff4c7985458 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1808eb30d11..6ea1b790812 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 7a5c271ddf4..3d8f779c30a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index fc4433f675e..e224bec7e51 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index d72b98695b6..c43817bbd79 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index c301eefc3e2..ad519139381 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 7762dd7790d..68247863c1d 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index be10f01f171..f8816996488 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 572902073e5..c9a8b6b33f0 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index cf3be8949df..0d3b7a415ae 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 765d79717ff..dcda6eb8de7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index b5b65d0146d..ebc24d7012d 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index bd28b07b4de..56a4f495622 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index d31718c99c1..9420a693178 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 33a5c8be41c..0eb8839c264 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index f658e8f7b54..b932628f084 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 3d4d1fa24f3..7e790781c7c 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bbe278b8d36..1826acbd6dc 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index a44f93cd842..cfdd28f29c2 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 5589b82cf2f..f11c4ca2792 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 73759e0c696..81488724964 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index a17aa2223b8..f76885a72f8 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "Ime" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 68c91aa83dd..674455ce798 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index af53291a6b7..427a5953f67 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 5c0949d467e..5d9205e66e9 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 46b09b6696e..99d2ef51e87 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index fb442c19a8e..3008c2f07e3 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index f8010210e98..9e0370f3f4e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 7e297b7a5ff..1b52b56d7a5 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 68a9891511a..a1caa31d85d 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index c30e5b78aa6..079d207a9a4 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 17fa5b57a7c..700ac14549a 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index d2c517d8702..785c64d11c1 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d2fff940cdd..f2371867324 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index f55aea97dd0..47632b2aaa1 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index f390a6579fa..e1aafcb73f3 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 5ac70e567cf..911fddb2440 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 9e31b09d6f5..b476a84100f 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index c5e8d835509..004d4f289fa 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index c7485277d36..f4384426722 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index e9e6f29e901..794ae0df0ea 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 214be2332a0..a6fb1653a84 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index eb8294f0c70..dadd487b01b 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index f674311a785..470a4e60623 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index ec7c08820bb..40c4fc35f31 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 7a9afec176b..2a98c1cee4e 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index acaa4286559..ec6546aa94a 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 01712d2e665..6eee7eeb307 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 3b1267060a0..038254f164f 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index b771a0140ff..e78d34802b4 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 84e729e7d64..5ad778dad79 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 94ab676a5d8..7e7e5645abe 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8de2ae6ff75..8861afa800c 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index c990cbdb184..ed2734984f4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 44364357f06..53e848e2b79 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 241a1798f51..408aa7bdc4e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 70396f6ff6e..27a3e150c4b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 04d810a07db..8d64bef76c4 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 0a416ec9f84..8fc9ef7e22b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f69b06c59f9..9906253b45d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 5deffb36845..81063bf78bd 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 93ad485fb3a..488df709fa5 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index aa9d72d0e37..2fe6fd2d9e6 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 555256c98a0..5af7d250813 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index a215007b552..084d8c6b885 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 544ca61e57c..bd905ca2c57 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index b82ca0c0e5d..4c90d506354 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 663a7dff92f..699459d6860 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 73608e588df..d32df044b7a 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f3c48b4c2c4..472a640ed9a 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 1a68d0a2d78..86b39e37e1b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 258a3ce1e2d..e2172a23b58 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index e49e0be6a6f..5d08843d13a 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 988f85baf28..c61d26e1e92 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 68bca25000b..3e8a4d2b0bf 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 31ac60d3172..a745de7da24 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index bc454026cf5..bf911cfcfbf 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 9bc9b16d820..154056ef67a 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 0fabd1f9044..27f3b871df9 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 2c0da065a62..bdd1242b616 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 6080da51232..6a47a18231c 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 1e611bbb7b0..5c5bd1c92d6 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index cea794bda46..ef192545263 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index c179d6f1b5a..45b95a8a6ab 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 99446bbbdca..72f66c15b38 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 7646d82455b..5472e30c558 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 90aa7ab25d5..b5f381a7044 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 65d6bb42458..778723b5c36 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index c983564de02..9f1a4eaa293 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index b9594b1b0c9..41f349cde40 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 468184bb431..7b9cbf147bd 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 82f60bc84b2..b786052e851 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 0b9b82ed6df..b30e298d4ce 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 138256b51b8..9a5e5c24c56 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 21876fddb03..b5f3b6ea21a 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 53c138d049f..ddb1a67c050 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index bccfee4e086..0e4677d4618 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 60ec16cf4c9..dbd0d8252da 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 6562e8a118c..ea528c8cb3b 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index b31244473fa..bbcdddb3ebc 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 35d563b855c..92204ebf55c 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 5d7a7dffaa6..d876631ce9b 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index ac5c17edfa2..9b477f406f4 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 958ea72a1d5..db3ddf7af8a 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index f4bec8ef1f8..e56d6c81bc8 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 3a9fcb8f0fa..51bc61faf24 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 68daeabf213..f4e3dc2f3ac 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 850dc263b2f..6d711f86c85 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 2d39e17b3a6..1f810f92e8b 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 49b189a8d6b..083612d6b95 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index f332863beff..15241ba1747 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 884ba809389..1323dc53df9 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index ecabf709fea..df772e70403 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 33042cc1765..e145971eaee 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 39a12e4d868..95eb3f25f6b 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0268143d678..22dbab6a9a7 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 7fe39f74003..6b8fce26b14 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index ac18f3ac080..611c3de3f02 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index baec023379f..bae324834a4 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 8da90d0cfbe..9f2b44ca18e 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 6e52387a664..b68e04a7699 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index ef7b9d2b6a9..3188fd01ca9 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index adc217ec3b9..bbbcabe9be7 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 7181cc7ace9..759c08aafff 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 97695b1f8b9..eb573de5953 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f2f5b603f83..902c246b7ff 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 1d5c6af50f2..f48f69de28c 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index b52006beefb..f5655267f6e 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index d0ab98047b0..bdb82b6d2ad 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index d111107c406..e837deda0ff 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 7363c2f9c01..dc1b200a4c7 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index a61a96a0815..7a493600bac 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index a03493a29f8..91c40b6c638 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:58+0200\n" -"PO-Revision-Date: 2013-06-22 10:23+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index b5368be4953..57857ae38ee 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 53f7eac3627..edc70b34a2f 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 23c4fbac84c..3e0f4e60baa 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 06ebe4ce9e5..8daa61cb53b 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-24 00:02+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 96c738b50d0..b6b66dffe2f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"PO-Revision-Date: 2013-06-23 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 6bd4c12b8ee..13ee1b295e9 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"PO-Revision-Date: 2013-06-23 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 4ced1d3c22e..25b28b9021a 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -52,6 +52,7 @@ "Forum" => "Forumo", "Bugtracker" => "Cimoraportejo", "Commercial Support" => "Komerca subteno", +"Get the apps to sync your files" => "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", "You have used %s of the available %s" => "Vi uzas %s el la haveblaj %s", "Password" => "Pasvorto", "Your password was changed" => "Via pasvorto ŝanĝiĝis", -- GitLab From 4ecca9e97b85ba8fb45c87dcc1885751049403fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 24 Jun 2013 12:59:56 +0200 Subject: [PATCH 042/215] graceful teardown of cache --- tests/lib/files/cache/cache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index f272655925b..527c1d1b2a1 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -348,7 +348,9 @@ class Cache extends \PHPUnit_Framework_TestCase { } public function tearDown() { - $this->cache->clear(); + if ($this->cache) { + $this->cache->clear(); + } } public function setUp() { -- GitLab From 3e3b66bd0d9a44ef43b6699220180a2b76b5df0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 24 Jun 2013 16:12:21 +0200 Subject: [PATCH 043/215] use to_char when comparing clob to string on oracle, use execute audited --- lib/connector/sabre/locks.php | 4 ++++ lib/connector/sabre/node.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index cbc495dec19..7aca2e43712 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -176,6 +176,10 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { public function unlock($uri, Sabre_DAV_Locks_LockInfo $lockInfo) { $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND `uri` = ? AND `token` = ?'; + if (OC_Config::getValue( "dbtype") === 'oci') { + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison + $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND to_char(`uri`) = ? AND `token` = ?'; + } $result = OC_DB::executeAudited( $sql, array(OC_User::getUser(), $uri, $lockInfo->token)); return $result->numRows() === 1; diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 1ffa048d6b2..0bffa58af78 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -189,8 +189,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ public function getProperties($properties) { if (is_null($this->property_cache)) { - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?' ); - $result = $query->execute( array( OC_User::getUser(), $this->path )); + $sql = 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?'; + $result = OC_DB::executeAudited( $sql, array( OC_User::getUser(), $this->path ) ); $this->property_cache = array(); while( $row = $result->fetchRow()) { -- GitLab From 643c8d308847197550480507120b5f0f34f8fc80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 14:46:22 +0200 Subject: [PATCH 044/215] make PDOStatementWrapper return number of updated rows on INSERT, UPDATE or DELETE queries, introduces isManipulation() to guess type of query --- lib/db.php | 80 ++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 65 insertions(+), 15 deletions(-) diff --git a/lib/db.php b/lib/db.php index a6b81aaba69..984c2bcf149 100644 --- a/lib/db.php +++ b/lib/db.php @@ -330,7 +330,7 @@ class OC_DB { * * SQL query via MDB2 prepare(), needs to be execute()'d! */ - static public function prepare( $query , $limit=null, $offset=null ) { + static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { if (!is_null($limit) && $limit != -1) { if (self::$backend == self::BACKEND_MDB2) { @@ -367,12 +367,23 @@ class OC_DB { OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG); } self::connect(); + + if ($isManipulation === null) { + //try to guess, so we return the number of rows on manipulations + $isManipulation = self::isManipulation($query); + } + // return the result if(self::$backend==self::BACKEND_MDB2) { - $result = self::$connection->prepare( $query ); + // differentiate between query and manipulation + if ($isManipulation) { + $result = self::$connection->prepare( $query, null, MDB2_PREPARE_MANIP ); + } else { + $result = self::$connection->prepare( $query, null, MDB2_PREPARE_RESULT ); + } // Die if we have an error (error means: bad query, not 0 results!) - if( PEAR::isError($result)) { + if( self::isError($result)) { throw new DatabaseException($result->getMessage(), $query); } }else{ @@ -381,7 +392,12 @@ class OC_DB { }catch(PDOException $e) { throw new DatabaseException($e->getMessage(), $query); } - $result=new PDOStatementWrapper($result); + // differentiate between query and manipulation + if ($isManipulation) { + $result=new PDOStatementWrapper($result, true); + } else { + $result=new PDOStatementWrapper($result, false); + } } if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { $type = OC_Config::getValue( "dbtype", "sqlite" ); @@ -391,7 +407,33 @@ class OC_DB { } return $result; } - + + /** + * tries to guess the type of statement based on the first 10 characters + * the current check allows some whitespace but does not work with IF EXISTS or other more complex statements + * + * @param string $sql + */ + static public function isManipulation( $sql ) { + $selectOccurence = stripos ($sql, "SELECT"); + if ($selectOccurence !== false && $selectOccurence < 10) { + return false; + } + $insertOccurence = stripos ($sql, "INSERT"); + if ($insertOccurence !== false && $insertOccurence < 10) { + return true; + } + $updateOccurence = stripos ($sql, "UPDATE"); + if ($updateOccurence !== false && $updateOccurence < 10) { + return true; + } + $deleteOccurance = stripos ($sql, "DELETE"); + if ($deleteOccurance !== false && $deleteOccurance < 10) { + return true; + } + return false; + } + /** * @brief execute a prepared statement, on error write log and throw exception * @param mixed $stmt PDOStatementWrapper | MDB2_Statement_Common , @@ -718,6 +760,9 @@ class OC_DB { } catch(PDOException $e) { OC_Template::printExceptionErrorPage( $e ); } + if ($result === 0) { + return true; + } return $result; } @@ -919,7 +964,7 @@ class OC_DB { * @return bool */ public static function isError($result) { - if(!$result) { + if(self::$backend==self::BACKEND_PDO and $result === false) { return true; }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) { return true; @@ -997,11 +1042,13 @@ class PDOStatementWrapper{ /** * @var PDOStatement */ - private $statement=null; - private $lastArguments=array(); + private $statement = null; + private $isManipulation = false; + private $lastArguments = array(); - public function __construct($statement) { - $this->statement=$statement; + public function __construct($statement, $isManipulation = false) { + $this->statement = $statement; + $this->isManipulation = $isManipulation; } /** @@ -1023,16 +1070,19 @@ class PDOStatementWrapper{ $input = $this->tryFixSubstringLastArgumentDataForMSSQL($input); } - $result=$this->statement->execute($input); + $result = $this->statement->execute($input); } else { - $result=$this->statement->execute(); + $result = $this->statement->execute(); } - if ($result) { - return $this; - } else { + if ($result === false) { return false; } + if ($this->isManipulation) { + return $this->statement->rowCount(); + } else { + return $this; + } } private function tryFixSubstringLastArgumentDataForMSSQL($input) { -- GitLab From 88fc410c1936510b84497b677248cd20db9fd87f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 14:47:12 +0200 Subject: [PATCH 045/215] fix numRows usage in user_ldap --- apps/user_ldap/lib/access.php | 6 ++---- apps/user_ldap/lib/helper.php | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 04f73cf01fe..6f6b8d0f016 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -578,14 +578,12 @@ abstract class Access { '); //feed the DB - $res = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); + $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); - if(\OCP\DB::isError($res)) { + if(\OCP\DB::isError($insRows)) { return false; } - $insRows = $res->numRows(); - if($insRows === 0) { return false; } diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 10ed40ebd6a..f65f466789f 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -90,13 +90,13 @@ class Helper { AND `appid` = \'user_ldap\' AND `configkey` NOT IN (\'enabled\', \'installed_version\', \'types\', \'bgjUpdateGroupsLastRun\') '); - $res = $query->execute(array($prefix.'%')); + $delRows = $query->execute(array($prefix.'%')); - if(\OCP\DB::isError($res)) { + if(\OCP\DB::isError($delRows)) { return false; } - if($res->numRows() === 0) { + if($delRows === 0) { return false; } -- GitLab From c223bee6df33b3208dbb5a7c46dbeb98eccf10ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 14:47:42 +0200 Subject: [PATCH 046/215] fix numRows usage in core lib --- lib/connector/sabre/locks.php | 2 +- lib/vcategories.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index cbc495dec19..e057b059947 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -178,7 +178,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND `uri` = ? AND `token` = ?'; $result = OC_DB::executeAudited( $sql, array(OC_User::getUser(), $uri, $lockInfo->token)); - return $result->numRows() === 1; + return $result === 1; } diff --git a/lib/vcategories.php b/lib/vcategories.php index 7bac6e7d4e3..84036958359 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -125,7 +125,7 @@ class OC_VCategories { OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return ($result->numRows() == 0); + return ($result->numRows() === 0); } catch(Exception $e) { OCP\Util::writeLog('core', __METHOD__.', exception: '.$e->getMessage(), OCP\Util::ERROR); -- GitLab From c79f7f4f3cb460f890fccb5a7de7d62ea0a5fc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 14:49:10 +0200 Subject: [PATCH 047/215] fix numRows usage in files_encryption --- apps/files_encryption/lib/util.php | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index e8e53859bd8..b3de85254e2 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -362,17 +362,7 @@ class Util { } - $query = \OCP\DB::prepare($sql); - - if ($query->execute($args)) { - - return true; - - } else { - - return false; - - } + return is_numeric(\OC_DB::executeAudited($sql, $args)); } @@ -1063,8 +1053,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; $args = array(self::MIGRATION_IN_PROGRESS, $this->userId, self::MIGRATION_OPEN); $query = \OCP\DB::prepare($sql); - $result = $query->execute($args); - $manipulatedRows = $result->numRows(); + $manipulatedRows = $query->execute($args); if ($manipulatedRows === 1) { $return = true; @@ -1087,8 +1076,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; $args = array(self::MIGRATION_COMPLETED, $this->userId, self::MIGRATION_IN_PROGRESS); $query = \OCP\DB::prepare($sql); - $result = $query->execute($args); - $manipulatedRows = $result->numRows(); + $manipulatedRows = $query->execute($args); if ($manipulatedRows === 1) { $return = true; -- GitLab From 1b97c186b4f2946753123fb73314597b818aea70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 15:38:02 +0200 Subject: [PATCH 048/215] use assertEquals number of rows in db tests --- tests/lib/db.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index afbdb413c3d..0ba7d5d4b06 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -40,7 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); @@ -57,7 +57,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testNOW() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); @@ -66,7 +66,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testUNIX_TIMESTAMP() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); $result = $query->execute(array('uri_3')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); @@ -105,7 +105,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Normal test to have same known data inserted. $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); $result = $query->execute(array($fullname, $uri, $carddata)); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); -- GitLab From b32d6d84878798b78afa757c4d8a068a84ab9513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 24 Jun 2013 22:52:01 +0200 Subject: [PATCH 049/215] for oracle use BITAND() instead of & in sharing permissions sql --- lib/public/share.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index 122ab3fa030..f40cd0d77fa 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -662,9 +662,13 @@ class Share { // Remove the permissions for all reshares of this item if (!empty($ids)) { $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ?' - .' WHERE `id` IN ('.$ids.')'); - $query->execute(array($permissions)); + // the binary operator & works on sqlite, mysql, postgresql and mssql + $sql = 'UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'; + if (\OC_Config::getValue('dbtype', 'sqlite') === 'oci') { + // guess which dbms does not handle & and uses a function for this + $sql = 'UPDATE `*PREFIX*share` SET `permissions` = BITAND(`permissions`,?) WHERE `id` IN ('.$ids.')'; + } + \OC_DB::executeAudited($sql, array($permissions)); } } } -- GitLab From c3b8f2bf64ef7b6cbdabb382b1c0a721bddb4041 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 25 Jun 2013 02:13:40 +0200 Subject: [PATCH 050/215] [tx-robot] updated from transifex --- apps/files/l10n/eo.php | 11 +++++++- apps/files_encryption/l10n/el.php | 1 + apps/files_encryption/l10n/eo.php | 14 +++++++++- apps/files_encryption/l10n/pl.php | 2 ++ apps/files_trashbin/l10n/eo.php | 1 + apps/user_ldap/l10n/es_AR.php | 12 ++++++++ apps/user_webdavauth/l10n/el.php | 1 + apps/user_webdavauth/l10n/es_AR.php | 1 + core/l10n/el.php | 5 ++++ core/l10n/eo.php | 12 +++++++- core/l10n/es_AR.php | 5 ++++ l10n/ar/core.po | 4 +-- l10n/ar/files.po | 4 +-- l10n/ar/files_external.po | 4 +-- l10n/ar/files_sharing.po | 4 +-- l10n/ar/files_trashbin.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_external.po | 4 +-- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/files_trashbin.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_external.po | 4 +-- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/files_trashbin.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 4 +-- l10n/bs/files.po | 4 +-- l10n/bs/files_trashbin.po | 4 +-- l10n/ca/core.po | 4 +-- l10n/ca/files.po | 4 +-- l10n/ca/files_external.po | 4 +-- l10n/ca/files_sharing.po | 4 +-- l10n/ca/files_trashbin.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 4 +-- l10n/cs_CZ/files.po | 4 +-- l10n/cs_CZ/files_external.po | 4 +-- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_external.po | 4 +-- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/files_trashbin.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 4 +-- l10n/da/files.po | 4 +-- l10n/da/files_external.po | 4 +-- l10n/da/files_sharing.po | 4 +-- l10n/da/files_trashbin.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 4 +-- l10n/de/files.po | 4 +-- l10n/de/files_external.po | 4 +-- l10n/de/files_sharing.po | 4 +-- l10n/de/files_trashbin.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 4 +-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_external.po | 4 +-- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/files_trashbin.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 20 ++++++++------ l10n/el/files.po | 4 +-- l10n/el/files_encryption.po | 10 ++++--- l10n/el/files_external.po | 4 +-- l10n/el/files_sharing.po | 4 +-- l10n/el/files_trashbin.po | 4 +-- l10n/el/lib.po | 9 +++--- l10n/el/settings.po | 11 +++++--- l10n/el/user_ldap.po | 4 +-- l10n/el/user_webdavauth.po | 9 +++--- l10n/en@pirate/files.po | 4 +-- l10n/en@pirate/files_sharing.po | 4 +-- l10n/eo/core.po | 27 +++++++++--------- l10n/eo/files.po | 25 +++++++++-------- l10n/eo/files_encryption.po | 31 +++++++++++---------- l10n/eo/files_external.po | 4 +-- l10n/eo/files_sharing.po | 4 +-- l10n/eo/files_trashbin.po | 6 ++-- l10n/eo/lib.po | 43 +++++++++++++++-------------- l10n/eo/settings.po | 8 +++--- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 4 +-- l10n/es/files.po | 4 +-- l10n/es/files_external.po | 4 +-- l10n/es/files_sharing.po | 4 +-- l10n/es/files_trashbin.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 16 +++++------ l10n/es_AR/files.po | 4 +-- l10n/es_AR/files_external.po | 4 +-- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/files_trashbin.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 28 +++++++++---------- l10n/es_AR/user_webdavauth.po | 8 +++--- l10n/et_EE/core.po | 4 +-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_external.po | 4 +-- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/files_trashbin.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 4 +-- l10n/eu/files.po | 4 +-- l10n/eu/files_external.po | 4 +-- l10n/eu/files_sharing.po | 4 +-- l10n/eu/files_trashbin.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 4 +-- l10n/fa/files.po | 4 +-- l10n/fa/files_external.po | 4 +-- l10n/fa/files_sharing.po | 4 +-- l10n/fa/files_trashbin.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 4 +-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_external.po | 4 +-- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/files_trashbin.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 4 +-- l10n/fr/files.po | 4 +-- l10n/fr/files_external.po | 4 +-- l10n/fr/files_sharing.po | 4 +-- l10n/fr/files_trashbin.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 4 +-- l10n/gl/files.po | 4 +-- l10n/gl/files_external.po | 4 +-- l10n/gl/files_sharing.po | 4 +-- l10n/gl/files_trashbin.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 4 +-- l10n/he/files.po | 4 +-- l10n/he/files_external.po | 4 +-- l10n/he/files_sharing.po | 4 +-- l10n/he/files_trashbin.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 4 +-- l10n/hi/files.po | 4 +-- l10n/hr/core.po | 4 +-- l10n/hr/files.po | 4 +-- l10n/hr/files_external.po | 4 +-- l10n/hr/files_sharing.po | 4 +-- l10n/hr/files_trashbin.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_external.po | 4 +-- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/files_trashbin.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 4 +-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +-- l10n/ia/core.po | 4 +-- l10n/ia/files.po | 4 +-- l10n/ia/files_external.po | 4 +-- l10n/ia/files_sharing.po | 4 +-- l10n/ia/files_trashbin.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 4 +-- l10n/id/files.po | 4 +-- l10n/id/files_external.po | 4 +-- l10n/id/files_sharing.po | 4 +-- l10n/id/files_trashbin.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 4 +-- l10n/is/files.po | 4 +-- l10n/is/files_external.po | 4 +-- l10n/is/files_sharing.po | 4 +-- l10n/is/files_trashbin.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 4 +-- l10n/it/files.po | 4 +-- l10n/it/files_external.po | 4 +-- l10n/it/files_sharing.po | 4 +-- l10n/it/files_trashbin.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 4 +-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_external.po | 4 +-- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_trashbin.po | 4 +-- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 4 +-- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/files.po | 4 +-- l10n/ka/files_sharing.po | 4 +-- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_external.po | 4 +-- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/files_trashbin.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 4 +-- l10n/ko/files.po | 4 +-- l10n/ko/files_external.po | 4 +-- l10n/ko/files_sharing.po | 4 +-- l10n/ko/files_trashbin.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/files.po | 4 +-- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/files_trashbin.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 4 +-- l10n/lb/files.po | 4 +-- l10n/lb/files_external.po | 4 +-- l10n/lb/files_sharing.po | 4 +-- l10n/lb/files_trashbin.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_external.po | 4 +-- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/files_trashbin.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 4 +-- l10n/lv/files.po | 4 +-- l10n/lv/files_external.po | 4 +-- l10n/lv/files_sharing.po | 4 +-- l10n/lv/files_trashbin.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 4 +-- l10n/mk/files.po | 4 +-- l10n/mk/files_external.po | 4 +-- l10n/mk/files_sharing.po | 4 +-- l10n/mk/files_trashbin.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_external.po | 4 +-- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/files_trashbin.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/files.po | 4 +-- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_external.po | 4 +-- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/files_trashbin.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 4 +-- l10n/nl/files.po | 4 +-- l10n/nl/files_external.po | 4 +-- l10n/nl/files_sharing.po | 4 +-- l10n/nl/files_trashbin.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_external.po | 4 +-- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/files_trashbin.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 4 +-- l10n/oc/files.po | 4 +-- l10n/oc/files_external.po | 4 +-- l10n/oc/files_sharing.po | 4 +-- l10n/oc/files_trashbin.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 4 +-- l10n/pl/files.po | 4 +-- l10n/pl/files_encryption.po | 10 +++---- l10n/pl/files_external.po | 4 +-- l10n/pl/files_sharing.po | 4 +-- l10n/pl/files_trashbin.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 4 +-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_external.po | 4 +-- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/files_trashbin.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 4 +-- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_external.po | 4 +-- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/files_trashbin.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 4 +-- l10n/ro/files.po | 4 +-- l10n/ro/files_external.po | 4 +-- l10n/ro/files_sharing.po | 4 +-- l10n/ro/files_trashbin.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 4 +-- l10n/ru/files.po | 4 +-- l10n/ru/files_external.po | 4 +-- l10n/ru/files_sharing.po | 4 +-- l10n/ru/files_trashbin.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_external.po | 4 +-- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/files_trashbin.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 4 +-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_external.po | 4 +-- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/files_trashbin.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 4 +-- l10n/sl/files.po | 4 +-- l10n/sl/files_external.po | 4 +-- l10n/sl/files_sharing.po | 4 +-- l10n/sl/files_trashbin.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 4 +-- l10n/sq/files.po | 4 +-- l10n/sq/files_external.po | 4 +-- l10n/sq/files_sharing.po | 4 +-- l10n/sq/files_trashbin.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 4 +-- l10n/sr/files.po | 4 +-- l10n/sr/files_external.po | 4 +-- l10n/sr/files_sharing.po | 4 +-- l10n/sr/files_trashbin.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_external.po | 4 +-- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/files_trashbin.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files.po | 4 +-- l10n/sv/files_external.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/files_trashbin.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_external.po | 4 +-- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/files_trashbin.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 4 +-- l10n/te/files.po | 4 +-- l10n/te/files_external.po | 4 +-- l10n/te/files_trashbin.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_external.po | 4 +-- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/files_trashbin.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/files_external.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- l10n/tr/files_trashbin.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 4 +-- l10n/ug/files.po | 4 +-- l10n/ug/files_external.po | 4 +-- l10n/ug/files_sharing.po | 4 +-- l10n/ug/files_trashbin.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 4 +-- l10n/uk/files.po | 4 +-- l10n/uk/files_external.po | 4 +-- l10n/uk/files_sharing.po | 4 +-- l10n/uk/files_trashbin.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/files.po | 4 +-- l10n/ur_PK/files_trashbin.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 4 +-- l10n/vi/files.po | 4 +-- l10n/vi/files_external.po | 4 +-- l10n/vi/files_sharing.po | 4 +-- l10n/vi/files_trashbin.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_external.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_external.po | 4 +-- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/files_trashbin.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/files.po | 4 +-- l10n/zh_HK/files_external.po | 4 +-- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/files_trashbin.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 4 +-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_external.po | 4 +-- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/files_trashbin.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- lib/l10n/el.php | 1 + lib/l10n/eo.php | 18 ++++++++++++ settings/l10n/el.php | 1 + settings/l10n/eo.php | 2 ++ 544 files changed, 1237 insertions(+), 1141 deletions(-) diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 3eeb88754c7..d4cc7b2bb94 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -9,9 +9,11 @@ "No file was uploaded" => "Neniu dosiero alŝutiĝis.", "Missing a temporary folder" => "Mankas provizora dosierujo.", "Failed to write to disk" => "Malsukcesis skribo al disko", +"Not enough storage available" => "Ne haveblas sufiĉa memoro", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", "Share" => "Kunhavigi", +"Delete permanently" => "Forigi por ĉiam", "Delete" => "Forigi", "Rename" => "Alinomigi", "Pending" => "Traktotaj", @@ -21,11 +23,14 @@ "cancel" => "nuligi", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", +"perform delete operation" => "plenumi forigan operacion", "1 file uploading" => "1 dosiero estas alŝutata", "files uploading" => "dosieroj estas alŝutataj", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", +"Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", +"Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", "Not enough space available" => "Ne haveblas sufiĉa spaco", @@ -41,6 +46,7 @@ "{count} folders" => "{count} dosierujoj", "1 file" => "1 dosiero", "{count} files" => "{count} dosierujoj", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud.", "Unable to rename file" => "Ne eblis alinomigi dosieron", "Upload" => "Alŝuti", "File handling" => "Dosieradministro", @@ -55,12 +61,15 @@ "Text file" => "Tekstodosiero", "Folder" => "Dosierujo", "From link" => "El ligilo", +"Deleted files" => "Forigitaj dosieroj", "Cancel upload" => "Nuligi alŝuton", +"You don’t have write permissions here." => "Vi ne havas permeson skribi ĉi tie.", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Download" => "Elŝuti", "Unshare" => "Malkunhavigi", "Upload too large" => "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", -"Current scanning" => "Nuna skano" +"Current scanning" => "Nuna skano", +"Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 68d2d021f7c..990f464bc1a 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -2,6 +2,7 @@ "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Saving..." => "Γίνεται αποθήκευση...", +"personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", "Enabled" => "Ενεργοποιημένο", "Disabled" => "Απενεργοποιημένο", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index ea405fda1ab..f6e0e884f35 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -1,4 +1,16 @@ "La pasvorto sukcese ŝanĝiĝis.", +"Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", +"Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", +"PHP module OpenSSL is not installed." => "La PHP-modulo OpenSSL ne instalitas.", "Saving..." => "Konservante...", -"Encryption" => "Ĉifrado" +"personal settings" => "persona agordo", +"Encryption" => "Ĉifrado", +"Enabled" => "Kapabligita", +"Disabled" => "Malkapabligita", +"Change Password" => "Ŝarĝi pasvorton", +"Your private key password no longer match your log-in password:" => "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:", +"Old log-in password" => "Malnova ensaluta pasvorto", +"Current log-in password" => "Nuna ensaluta pasvorto", +"Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo" ); diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index b0117d85390..6a28f859943 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", "Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików", +"PHP module OpenSSL is not installed." => "Moduł PHP OpenSSL nie jest zainstalowany", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona.", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 3288c4fcdc5..161e9c3e88a 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,5 +1,6 @@ "Eraro", +"Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", "1 folder" => "1 dosierujo", "{count} folders" => "{count} dosierujoj", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 011ff3e12ff..6925ea89a0c 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,5 @@ "Hubo un error al borrar las asignaciones.", "Failed to delete the server configuration" => "Fallo al borrar la configuración del servidor", "The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión pudo ser establecida.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales.", @@ -7,6 +8,7 @@ "Take over settings from recent server configuration?" => "Tomar los valores de la anterior configuración de servidor?", "Keep settings?" => "¿Mantener preferencias?", "Cannot add server configuration" => "No se pudo añadir la configuración del servidor", +"mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", "Error" => "Error", "Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", @@ -72,6 +74,16 @@ "Email Field" => "Campo de e-mail", "User Home Folder Naming Rule" => "Regla de nombre de los directorios de usuario", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", +"Internal Username" => "Nombre interno de usuario", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "Por defecto, el nombre interno de usuario va a ser creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. Para el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. Si ocurrieran colisiones, un número será añadido o incrementado. El nombre interno de usuario se usa para identificar un usuario internamente. Es también el nombre por defecto para el directorio personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar al anterior a ownCloud 5, ingresá el atributo del nombre en pantalla del usuario en el siguiente campo. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto para los nuevos usuarios LDAP.", +"Internal Username Attribute:" => "Atributo Nombre Interno de usuario:", +"Override UUID detection" => "Sobrescribir la detección UUID", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, ownCloud detecta automáticamente el atributo UUID. El atributo UUID se usa para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno va a ser creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP.", +"UUID Attribute:" => "Atributo UUID:", +"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", +"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "ownCloud usa nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché principalmente para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Borrar las asignaciones dejará restos en distintos lugares. Borrar las asignaciones no depende de la configuración, ¡afecta a todas las configuraciones de LDAP! No borrar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental.", +"Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", +"Clear Groupname-LDAP Group Mapping" => "Borrar la asignación de los Nombres de grupo de los grupos de LDAP", "Test Configuration" => "Probar configuración", "Help" => "Ayuda" ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 1943b98a750..79bb1d13bf7 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,4 +1,5 @@ "Αυθεντικοποίηση μέσω WebDAV ", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." ); diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index efb82288287..cda5d7eab05 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.php @@ -1,4 +1,5 @@ "Autenticación de WevDAV", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "onwCloud enviará las credenciales de usuario a esta URL. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); diff --git a/core/l10n/el.php b/core/l10n/el.php index 6b1239fe45c..022d9d90039 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,5 @@ "Ο %s διαμοιράστηκε μαζί σας το »%s«", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", "This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s", @@ -88,6 +89,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", "Username" => "Όνομα χρήστη", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;", +"Yes, I really want to reset my password now" => "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα.", "Request reset" => "Επαναφορά αίτησης", "Your password was reset" => "Ο κωδικός πρόσβασής σας επαναφέρθηκε", "To login page" => "Σελίδα εισόδου", @@ -100,6 +103,7 @@ "Help" => "Βοήθεια", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", @@ -130,6 +134,7 @@ "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Γεια σας,

    σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.
    Δείτε το!

    Γεια χαρά!", "prev" => "προηγούμενο", "next" => "επόμενο", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." diff --git a/core/l10n/eo.php b/core/l10n/eo.php index c647850d0cb..2adf09d3a01 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,4 +1,5 @@ "%s kunhavigis “%s” kun vi", "Category type not provided." => "Ne proviziĝis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: %s" => "Tiu kategorio jam ekzistas: %s", @@ -84,8 +85,10 @@ "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", +"Request failed!
    Did you make sure your email/username was right?" => "La peto malsukcesis!
    Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", "Username" => "Uzantonomo", +"Yes, I really want to reset my password now" => "Jes, mi vere volas restarigi mian pasvorton nun", "Request reset" => "Peti rekomencigon", "Your password was reset" => "Via pasvorto rekomencis", "To login page" => "Al la ensaluta paĝo", @@ -98,11 +101,13 @@ "Help" => "Helpo", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!", "web services under your control" => "TTT-servoj regataj de vi", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.", "Create an admin account" => "Krei administran konton", "Advanced" => "Progresinta", @@ -115,12 +120,17 @@ "Database tablespace" => "Datumbaza tabelospaco", "Database host" => "Datumbaza gastigo", "Finish setup" => "Fini la instalon", +"%s is available. Get more information on how to update." => "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi.", "Log out" => "Elsaluti", +"Automatic logon rejected!" => "La aŭtomata ensaluto malakceptiĝis!", "If you did not change your password recently, your account may be compromised!" => "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!", "Please change your password to secure your account again." => "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree.", "Lost your password?" => "Ĉu vi perdis vian pasvorton?", "remember" => "memori", "Log in" => "Ensaluti", +"Alternative Logins" => "Alternativaj ensalutoj", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Saluton:

    Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
    Vidu ĝin

    Ĝis!", "prev" => "maljena", -"next" => "jena" +"next" => "jena", +"Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 24e5a41fd0d..77c3fb854b4 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,5 @@ "%s compartió \"%s\" con vos", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: %s" => "Esta categoría ya existe: %s", @@ -89,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "¡Error en el pedido!
    ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", "Username" => "Nombre de usuario", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?", +"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Tu contraseña fue restablecida", "To login page" => "A la página de inicio de sesión", @@ -101,6 +104,7 @@ "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encontró ownCloud", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", "web services under your control" => "servicios web controlados por vos", "Edit categories" => "Editar categorías", "Add" => "Agregar", @@ -131,6 +135,7 @@ "remember" => "recordame", "Log in" => "Entrar", "Alternative Logins" => "Nombre alternativos de usuarios", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hola,

    Simplemente te informo que %s compartió %s con vos.
    Miralo acá:

    ¡Chau!", "prev" => "anterior", "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." diff --git a/l10n/ar/core.po b/l10n/ar/core.po index de957a7488f..19fb5c4dfec 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index b40c59c04d3..442f9884e27 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index d6e2b4fbc03..62dfedc1b11 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index c7c29dfd6ef..f60201d93d8 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index bdb9ab4a5df..8eff71b6087 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 4f23c0685fb..06e93fda201 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 02611d5ea56..7d6843d46ed 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 619e35eacdb..3026f4176fd 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index cf98a316b2a..1fb7ac0ac22 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 061e87596fa..d0359ac36fb 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 4272114999f..46a8af31826 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index a75fe8b7ceb..fa57282c548 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 84288fa5381..a4031363292 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 6d547cbb86e..78b4b0477b7 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f82d357fc1a..f49178b4df1 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 1f26904e058..f2b45a44368 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index a1b42385e27..ae72a1c51f1 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 864c9a197f8..530f53b57b8 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 4d58cb46e68..b118377a467 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index e99376a69df..751a0e9851c 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 42dca32f470..45917e8c2c2 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index c06bbc67834..e417029cbe7 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index aef49cdf192..737a232ea73 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index d261ab9829b..d02da047cc0 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index e778129e058..3fa561583a5 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:14+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 35eea288541..3ac54f3ac08 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 8313a691598..e1c98571073 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 65c292ce758..94ffdf56d2a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 117df69d65a..f6c844a09a4 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 60701995dd3..6b2a1a6c639 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 123411a7b0c..2a393ccd023 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 117dbe49505..01ae128cda2 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 9e3f24edcc0..ee59377b786 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 9598ee3976f..224002bec7e 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 98378d83298..c3dbbbfeb4b 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index c63c411cb90..18496bd40a1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8b6e5f3c387..408a7c8ceb4 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d4bf2b7854f..da8c3be275b 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 3848eb6d5c7..cd6710a33c3 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 55c2c697ded..1021b1210a6 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index fc3699d5f1c..360f342135a 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2a07fc79877..7f6cb2e2194 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 6f9d2b6878e..f7564303444 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 4a531ca226f..86563696dd0 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 04aa08729fb..0fe4ae3c2ed 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 25b74992508..4c97c164051 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 0345e79343b..c46fa8d8d53 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 64dc2bb5c6e..93df73432e7 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 5c9984da1cb..9b81324b0d3 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6d6121654ad..099a3b8452d 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 1377bf961f3..eb05e50dafb 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index ca9de6f6284..2b308638333 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 71aa65239b3..748ec0b000a 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index a15a226c953..bd57790c5e6 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index c377f419e92..3839cd41de9 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 4cade56a289..17b13125e27 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 18dd68113d8..863ce3a21f1 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 581beb4cd12..81dfc4cd9c7 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 75efc18232b..6297d10e64a 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 00832917629..8e263192397 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index c003ef95c6c..5f850530349 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index f2c9aed079a..a4c10686841 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5b2e8e6384e..f50c4876f3e 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 0ff8d022171..3252322f944 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 576421b685c..059c1dece13 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index dc43b611af4..20f12e57ef8 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 2bc71f77792..346052389ed 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 0b08d3ec669..b08fe56ccf3 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 42eece2f04f..c5e54a7924f 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 96b220f783c..2e742ac65b2 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 36b3bef467f..e2e3c71b942 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 70587360217..3691f145269 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 926b29e9e4a..37520771812 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 56b022398ef..3edee2d3106 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 5ed822aa071..57539d1473a 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 66c78d33922..4c873557712 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,16 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# KAT.RAT12 , 2013 +# Teogramm , 2013 # Teogramm , 2013 # Wasilis , 2013 +# Wasilis , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +27,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -410,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -473,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -615,7 +619,7 @@ msgstr "Εναλλακτικές Συνδέσεις" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Γεια σας,

    σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.
    Δείτε το!

    Γεια χαρά!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/el/files.po b/l10n/el/files.po index 81e8c56df1c..e41025176d0 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 74dca7b6b20..2f09202bc3a 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# Teogramm , 2013 # Teogramm , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 20:50+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,7 +89,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "προσωπικές ρυθμίσεις" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 82015f9334f..9fe5f292781 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 2d518783204..b5ae360acc9 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e85671da2b3..69c33de5c5f 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index dac0bd47d18..0b2772c842e 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +124,7 @@ msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχ #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Αδυναμία σύνδεσης Oracle" #: setup.php:234 msgid "MySQL username and/or password not valid" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 9a560f8a214..36c3e09347e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# KAT.RAT12 , 2013 +# Teogramm , 2013 # Teogramm , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -473,7 +476,7 @@ msgstr "Κωδικός Επαναφοράς Διαχειριστή " msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 4a20f56c6d1..9f039f015bc 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 60764100655..cd7f6d89f48 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -5,15 +5,16 @@ # Translators: # Dimitris M. , 2012 # Efstathios Iosifidis , 2012 +# Efstathios Iosifidis , 2013 # Konstantinos Tzanidis , 2012 # Marios Bekatoros <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 20:30+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index a6994d65cc5..384d362de3a 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 657197abefe..5a12cdfcd94 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3b851c78bf9..3db6f7cc5de 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -4,13 +4,14 @@ # # Translators: # Baptiste , 2013 +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s kunhavigis “%s” kun vi" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -391,7 +392,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "La peto malsukcesis!
    Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -412,7 +413,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jes, mi vere volas restarigi mian pasvorton nun" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -496,7 +497,7 @@ msgstr "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure." #: templates/installation.php:32 msgid "" @@ -572,7 +573,7 @@ msgstr "Fini la instalon" #: templates/layout.user.php:40 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." #: templates/layout.user.php:67 msgid "Log out" @@ -580,7 +581,7 @@ msgstr "Elsaluti" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "La aŭtomata ensaluto malakceptiĝis!" #: templates/login.php:10 msgid "" @@ -606,14 +607,14 @@ msgstr "Ensaluti" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternativaj ensalutoj" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Saluton:

    Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
    Vidu ĝin

    Ĝis!" #: templates/part.pagenavi.php:3 msgid "prev" @@ -626,4 +627,4 @@ msgstr "jena" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index a4f6c10fb0d..2d5de0277fe 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "Malsukcesis skribo al disko" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Ne haveblas sufiĉa memoro" #: ajax/upload.php:83 msgid "Invalid directory." @@ -80,7 +81,7 @@ msgstr "Kunhavigi" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "Forigi por ĉiam" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" @@ -120,7 +121,7 @@ msgstr "malfari" #: js/filelist.js:331 msgid "perform delete operation" -msgstr "" +msgstr "plenumi forigan operacion" #: js/filelist.js:413 msgid "1 file uploading" @@ -146,11 +147,11 @@ msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" #: js/files.js:231 msgid "" @@ -217,7 +218,7 @@ msgstr "{count} dosierujoj" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." #: lib/app.php:73 msgid "Unable to rename file" @@ -277,7 +278,7 @@ msgstr "El ligilo" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Forigitaj dosieroj" #: templates/index.php:48 msgid "Cancel upload" @@ -285,7 +286,7 @@ msgstr "Nuligi alŝuton" #: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Vi ne havas permeson skribi ĉi tie." #: templates/index.php:61 msgid "Nothing in here. Upload something!" @@ -319,4 +320,4 @@ msgstr "Nuna skano" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Ĝisdatiĝas dosiersistema kaŝmemoro..." diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 8d879029c0f..29c9e1a3942 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 21:00+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,15 +38,15 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "La pasvorto sukcese ŝanĝiĝis." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis." #: ajax/updatePrivateKeyPassword.php:53 msgid "" @@ -62,7 +63,7 @@ msgstr "" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "La PHP-modulo OpenSSL ne instalitas." #: hooks/hooks.php:45 msgid "" @@ -86,7 +87,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "persona agordo" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Kapabligita" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Malkapabligita" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,11 +124,11 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Ŝarĝi pasvorton" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." @@ -141,15 +142,15 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Malnova ensaluta pasvorto" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Nuna ensaluta pasvorto" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Ĝisdatigi la pasvorton de la malpublika klavo" #: templates/settings-personal.php:45 msgid "Enable password recovery:" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index cb878138751..a522b3897f1 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f01566f827f..b7321474a28 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index b64e7856584..9db18653f9e 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:123 msgid "Delete permanently" -msgstr "" +msgstr "Forigi por ĉiam" #: js/trash.js:176 templates/index.php:17 msgid "Name" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 05cb595c9c5..5af25201691 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,35 +88,35 @@ msgstr "Bildoj" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Starigi administran uzantonomon." #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Starigi administran pasvorton." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s enigu la uzantonomon de la datumbazo." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s enigu la nomon de la datumbazo." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s enigu la gastigon de la datumbazo." #: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" #: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." @@ -123,11 +124,11 @@ msgstr "" #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Konekto al Oracle ne povas stariĝi" #: setup.php:234 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" #: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 #: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 @@ -135,7 +136,7 @@ msgstr "" #: setup.php:626 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Datumbaza eraro: “%s”" #: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 #: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 @@ -147,24 +148,24 @@ msgstr "" #: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "La uzanto de MySQL “%s”@“localhost” jam ekzistas." #: setup.php:306 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Forigi ĉi tiun uzanton el MySQL" #: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "La uzanto de MySQL “%s”@“%%” jam ekzistas" #: setup.php:312 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Forigi ĉi tiun uzanton el MySQL." #: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" #: setup.php:595 setup.php:627 #, php-format @@ -174,18 +175,18 @@ msgstr "" #: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" #: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." #: setup.php:871 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bonvolu duoble kontroli la gvidilon por instalo." #: template.php:113 msgid "seconds ago" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 15649d93ccc..ad398470be6 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -190,12 +190,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bonvolu duoble kontroli la gvidilon por instalo." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index e953e2d945c..629841809f4 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 29a7224780d..a248abc333e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 263a4e67178..90d2b225cb1 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 0cfe0c46b4e..d4d80d382bd 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 3a3c6f5e991..1e79369bf20 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 2582a5201b1..560b857e051 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index b5bc48adc4b..53411f555d1 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 24ddc57c9c3..46545c8a8ae 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index b20c0aba34e..41e1d950da8 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index d018c1b5cf8..ba55fafabb2 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s compartió \"%s\" con vos" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -408,11 +408,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí, definitivamente quiero resetear mi contraseña ahora" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Nombre alternativos de usuarios" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Hola,

    Simplemente te informo que %s compartió %s con vos.
    Miralo acá:

    ¡Chau!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 1a7a0c63084..becd5ac9c06 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index d51c906e218..153c3b140ed 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 1a865b450ce..718febc53f1 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index b8de0fa2ec8..81756c5b9d6 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index df8a253c96f..bb5902339cb 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index c8b38554ec0..c3a95fcbe46 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 0efadedbd21..10fce34ab01 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Hubo un error al borrar las asignaciones." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -60,7 +60,7 @@ msgstr "No se pudo añadir la configuración del servidor" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Asignaciones borradas" #: js/settings.js:112 msgid "Success" @@ -343,7 +343,7 @@ msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especific #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Nombre interno de usuario" #: templates/settings.php:102 msgid "" @@ -359,15 +359,15 @@ msgid "" "achieve a similar behaviour as before ownCloud 5 enter the user display name" " attribute in the following field. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Por defecto, el nombre interno de usuario va a ser creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. Para el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. Si ocurrieran colisiones, un número será añadido o incrementado. El nombre interno de usuario se usa para identificar un usuario internamente. Es también el nombre por defecto para el directorio personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar al anterior a ownCloud 5, ingresá el atributo del nombre en pantalla del usuario en el siguiente campo. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto para los nuevos usuarios LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo Nombre Interno de usuario:" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "Sobrescribir la detección UUID" #: templates/settings.php:105 msgid "" @@ -378,15 +378,15 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Por defecto, ownCloud detecta automáticamente el atributo UUID. El atributo UUID se usa para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno va a ser creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "Atributo UUID:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: templates/settings.php:108 msgid "" @@ -401,15 +401,15 @@ msgid "" "configuration sensitive, it affects all LDAP configurations! Do never clear " "the mappings in a production environment. Only clear mappings in a testing " "or experimental stage." -msgstr "" +msgstr "ownCloud usa nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché principalmente para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Borrar las asignaciones dejará restos en distintos lugares. Borrar las asignaciones no depende de la configuración, ¡afecta a todas las configuraciones de LDAP! No borrar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 331ef231ba7..aaa1cdcdb30 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 13:50+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Autenticación de WevDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 27439638023..6762d0ea54f 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 26a994f782b..b6734e29813 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index ee631b2e6b1..7ea8f1b805b 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index a17219effa7..6a2d0891b3b 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 8ff982f35c1..31835743a5e 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 05732a0ea80..c44a64127bd 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 628bc4630ba..a9dfe623574 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index f17a24269c9..7e32f90b1a2 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 5fae1f5ab66..74447d964e9 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 71a56641ffc..e024c4ec12c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 6ac8b610896..f02508e3641 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index f51ede8a405..9c6d95fc487 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 139d9a427cd..5adee1473f9 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d2ca767e09c..9f1cf526265 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index e0bc61f672e..1b79eebf897 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 23daa532bd2..05346b9b9c0 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 89dd632e41d..721a508409a 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 611afc6aebf..ac1121b8501 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 9bc2bea3ff8..f4760822449 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 4d628119af3..d58b88919a9 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 3863cf9e72c..5e60d353f5c 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 6a8fd0b9f5f..736659c2d66 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index ce3accee37e..df0c99321cb 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7c55891d3ca..2063a13bc84 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 9eee6e8907b..d0eac27adbd 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 7aedd0589b6..f6e21219d6c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index f69eab70d29..dd248b49243 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 758e57adcb0..0e8c414c4f0 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 84f5bcbcd3b..a75d8905068 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index a86151e8b83..b4b2643461c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b0f95a5aee7..3a3ae42e7da 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index b79395deede..65d33f9fae7 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b088352a08e..781fb4fd5f5 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 36a6581e471..e898f15c676 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index f6fb2dafb1d..41a494fa0eb 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index ae2b0b9a4ff..299368667a9 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index be9698ba7fc..6e059d646d6 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 06e5578a190..7af2a0864dd 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 989f270e495..761eebdff58 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 72505e98ebb..c16f3f48ed1 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6ebb3eb0e18..7fc104a46ce 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index cc3b05d9a3f..03dd4721a8b 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 4ab7db41a60..df23ac5755b 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index ee8cef6fef9..722b853e7ae 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index bb31bc0fcf5..b60cbfa392a 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 2aabdb2b0c6..deac492ebe4 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 5f19076e267..868c045c88a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index a20319aebd1..445521bc6df 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 1b6b61071c0..24f590e80df 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 60d2b7d9710..4e3058b2563 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index a416f26a931..95238ab1d8b 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 0d54c67f7d5..84303f7131d 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e5d5c765900..f082ef709cf 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 3b0b408ffab..836576975ad 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index e85c780f7e8..3d070972904 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 3715e6bd327..8c0ee57df43 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 3df47099d8b..2ff68d38128 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e96a80b4d68..fd9534344b7 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index be362ff7841..b2cced49e25 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 588600f7904..95e832b9366 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index c253f00193f..cea4bc5e3a5 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 652f46b6e9f..c4fba92b672 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 555a98e65dc..62b262a66e8 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 3b9075a1604..3055cdec162 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 3d67c200fbb..914c763a8ec 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f3722724094..8f8985d8d50 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 75bfa8d5ce7..cf2df27bbdf 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 56651e4d4b7..6e106da39de 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 1d3f6d4086f..f1e1da92c57 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 971df918c17..c4fb8c18d55 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index febc9de51e5..7ffdafc5145 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 4c60a8191ad..32129adf289 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 138501851ca..d2d80a21cef 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 606b667015e..f9ec17656f9 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 2ffedb91713..f603edd312f 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 7d2ecd693d9..f8bc5720784 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 42e10fd8dd6..57930c3aba9 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 3002d705a32..166908dc603 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index f9055e58232..4e045aa92cb 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index daf5ae5a5a9..82e47f1d191 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 788b90924c7..cc4b95d1fa6 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 21408dbd844..bbc02a15691 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index ca8c795818c..58d4ca6f79d 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index bbfd0f596b4..ee275856d3b 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c9cf35d2710..66664425d1b 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index cd4cc4672d1..b4d68fd3ad2 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index e8ad11f06bf..68e60820197 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index adb01ea5644..129186c2b20 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9293cb6b7a1..8b2b0d44b4d 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 92191e0d87e..6253a52d25b 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 4c837188656..977993c0c5f 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index ee409a45517..452756c1bd6 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 8b4d51b3992..2bc9db17855 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 6bfcc1b38e0..3041d60c726 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index d8fcd6c3e67..53932e10e04 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index b42a7828106..e5d040661c7 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index eaa34b451bd..b8fc14b97bb 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index b38f72e1323..9cae0d9b69a 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index cef19e21c00..d29ce5dc992 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index d474316df6d..d368243b2f9 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 96789b3bcee..a50df8b0fe0 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 0f189d76a61..5630c70d557 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 74718f354c9..98a5c79dd98 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index ec59af96389..3c617585942 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 9f5ae9949f5..b348db4d2ba 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index e3edf01b280..75a3f680cf5 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index b43e6775fe1..760df5289ea 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index ebfe0b719cb..7de23ca415c 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 2eb14a89395..30f12007933 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index ce9bdd27498..3f774819bc3 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 18ee78296ce..3821c957017 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 8ddb4e207f2..ba991ee4ab4 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 9a0bcbdebf9..fef3f1d26de 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index d7edf082554..0ef0bdb50f7 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index dec92778533..ee2243de200 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 7507dc2a561..004b309857b 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 52c05faf490..7dfe54ebee6 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index d933dc99e03..673d0ed6d1b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index be0d7fd883f..58d7b40ef96 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 8376cb4a9c3..9f5016e1561 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 081bc9753de..f6b49738a33 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index adcde5d6928..adc8f908f1e 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 3411ed83d7a..c592cade332 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 8b4f1723ae1..7a4a81e7267 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index d0e9b9a6f9f..7197808c4b8 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 3f95eb2567a..cca36c65652 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index ac9ed6ff991..2ee7f310bb5 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 2996b82ca3d..f5da4d91781 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index a2c52bc259f..857af3f92d6 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f3e5c934694..3afc3e0e188 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index b15f6a22347..a23ae756b22 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index f9c9596a54e..32baedf12eb 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 2150277bd68..3d2e8d58ca8 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index edb3c357102..007b472165a 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 29d0fe0b4ca..6b98e67345d 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index b28408ee00c..471f688843a 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b785ac41143..e3224636631 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index cf67e3b5420..f02d873600a 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 51790664771..eabe26c857c 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 6f1a44a4c5d..d617c9a26c9 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 40890874b47..f6ca6a5fd8d 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 9befda58c86..f8c6c2b2572 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index e2611a33adb..66eb4c6c3eb 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index afee93f5661..8873636d86e 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index b1d9cd9a0c8..6376fb72755 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 9a1fceea76f..312ca589f78 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 6b2848264d2..2d5e31f158f 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 4d8a291bdaf..45a37f4e9ca 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 8ffa1b07a58..d1a63938f98 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 70ed7c78a33..758989a2e9d 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 2409603b9f6..b6df3996373 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index af896f13ff2..b43c66c5f99 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 977a9b00d5e..992acbe464b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 35500de21e4..95142361ea9 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index f65cdffbe13..a07516fcaf5 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 56596735f38..e190013b483 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 15174f63fb5..58869455f65 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 42b72c4d0d6..d7c544655fa 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 75dd1a33d72..5e2f4f76663 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a86d6c54f86..20754352ebf 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 0e6a6be24c9..11f96c28d52 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index e07252b4493..3be11866263 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index c2bbd78b9fb..7f9b45afb1e 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index fe4235e04ca..0a324d8bbb7 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 4f11b26292b..0801338ceb1 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6f3082b2a7a..798bce4b4b0 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 54a574265ce..0ceb5f5c7fa 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 94ad8cb8f0e..6fe9e775fcb 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 5e9cda49547..413e3cf10c2 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 5aa81b0f939..b6363d57e3b 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index d5d3c8f78de..59f0e864a38 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index da9796a65e0..cc88f6e4290 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index bfbd8b5697d..f0d99d865a2 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 53690f51e2e..3993883ecc9 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index c6ddabb209a..2e3b371570b 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 3c81d95dc37..0b7cdb2d2c8 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index dd600088e2b..54a7105fe33 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 8e6ac98a00d..05f9d279b11 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index b7dfead8586..4c882b2bb31 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index e83d10fb398..1b9fe0a222d 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 07d41bd33d4..7e93c2fe9f9 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 4d477c65528..32b5bacee2e 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index da91e6171b3..8ce89d95d25 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 1e0297f3350..46d3bf1da45 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:14+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index fb2b2340b5b..32b4f8ce155 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index cbada572d50..360d3b53047 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index b7e57a4b0fd..6a78f683f0d 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 59d008fc6c3..15978699b8b 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 627ef51348e..c6ea80174f1 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index ad6eb0e9543..386f892ed9a 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 2a11c97d9e9..a7787efd000 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index d21e4b38513..91868ad3f48 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 83a9e025800..89b5155f547 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a75e420a5f8..339f3085e0c 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index e223e716a0f..3b1dee392a9 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 85036371313..430a8bb0273 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a6e999fadd3..4f159c351cb 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 10b2123f0c4..17565890e52 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 10c6926179f..f411d781796 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index d25af1679fa..82d4cfce0bf 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index e762665c65b..87dfd06a141 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 84d5779ffa6..38e0626eefa 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 7ed37c731b6..5628970efd5 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6d3e3d5612b..89f00163e35 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 069da55a56d..9979e80ac8d 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 3e7044b861a..ccdeb80b13b 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index a1b1f3a506b..fbfa343392a 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 73abbe6bab0..629e4b310d6 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 7ce6f7d1ca6..8d5fa389995 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b99c2401bdd..a69e68ea68a 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 8acb2a99d4e..c485d1c034c 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 66315ca28d3..b178a3c9035 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 60d9f376eb0..554b3220333 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index a9e8eed79bc..2861541d8e2 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index ae6aacb3fe7..321a17e6a39 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 475b0d14536..31303dae2fe 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 0be95c38ffa..8e86e2d766a 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 790fd15b7f1..a038cbbe3e8 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 11467344dfd..b6e8ca4790a 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 9d193891b64..b06f066c55d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: adbrand \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 67fb5274635..ea5f5a39204 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 12:10+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,13 +63,13 @@ msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Moduł PHP OpenSSL nie jest zainstalowany" #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 2ba01b17e1b..20f5c5af2c9 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 9f95828bab7..e40db9de7cb 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 9e1afe59d24..c381a701808 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 37ea0f2de53..3eb6c56f6f0 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index a88656b6e23..0aad72d4336 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index b3681a53f84..9e430a342f8 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 349c1362ef2..ed3fb1a7c33 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 94a6a865ad1..4b51d108806 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 37f359406a5..c4809cb5b7f 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index f84ed97145b..d37a4a6651b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 4c8a82a01f7..ce7e12c3602 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 124d00367cd..df5970c1502 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4fc64bdd418..d8349aba6bd 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index bc93879564d..e1229186c22 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 24aaae7b26d..545feca668e 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 4288c6c78de..6c5efd05d90 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index b172b48763b..edc45652013 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 79a0a8758f9..9001665d276 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 15171ffb844..184b61b4e54 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 7bec6fd8fa5..20641e561f9 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 82b47f914bf..1f8f55744a8 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 19531140219..41d390e606c 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 54f3f770e96..df65634c5e3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 0f500aea479..e8c8874e4b5 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 64bc1040209..0be1e988672 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 7640519ff22..6f8a7e12118 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 24824f082c7..782a629110d 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 890d5212963..565b817447f 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 6322f8c28b8..5224d55239a 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 460b639e201..4a60c0b6336 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 7a4dff9c01c..4ae1f56f188 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 50c5aadb2d1..17aaa2f259f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 75348e56629..ea6ef3c81ef 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index f8c4f8dbd5a..7c4b879fb12 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 5cac6b8f5e1..0193ae76fc4 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 1d0d84a9189..217171f7464 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 55ff3b94f33..90e7012ac28 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 77ee05514d3..57b3c49fedf 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 86f3900bb83..fe94441ea6d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ce49045dda1..f6bea0bf49f 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index fcb6f3561fb..e5e1c4debf8 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 9d180db2dbe..9cca570f4cc 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 06100cbf5a6..c5d24768991 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index e3b1b7c5cc5..79af95303fe 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 72c2905460d..ad33a105cd5 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index ae37df9f776..1a142bca4d2 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e0fdf881a65..4852ecbe624 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 26818e72cbd..700cad7fb0e 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index d85aec6f5ff..85fdd6f7f1e 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index aa7bc1338ff..d5206a34a00 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 5a804943f1b..44c66f68c58 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 377a8bda2b0..d9c47d97a59 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 5bd8868bbaa..a45c24e0953 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 5d3ab87f55c..318c50196c5 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index bc02a26ec27..8b059c1333c 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 2006098ebf6..bc5991a1add 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 725a9badf64..de2a0294bcc 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 0261341dcc1..1c87f514b94 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index ff4c7985458..302ea26ae74 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 6ea1b790812..3ea5b6777d3 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 3d8f779c30a..25e23072fe6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index e224bec7e51..27b0d6c7fa6 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c43817bbd79..f06cfbbbc95 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index ad519139381..4d04c5bb974 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 68247863c1d..0481da7d481 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index f8816996488..9bfd573484e 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index c9a8b6b33f0..f3f8e545176 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 0d3b7a415ae..0c8eafde47f 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index dcda6eb8de7..668a512c56b 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index ebc24d7012d..5e370608248 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 56a4f495622..b3886035292 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 9420a693178..caa2976ee57 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 0eb8839c264..0c384f71e09 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b932628f084..fcecae91448 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 7e790781c7c..954030cd802 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 1826acbd6dc..075d05d2d7f 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index cfdd28f29c2..48963a75110 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index f11c4ca2792..8fd5aec3de3 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 81488724964..ac05de4c3f0 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f76885a72f8..38693d1adba 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 674455ce798..b52b1baeb71 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 427a5953f67..b2206da3d6d 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 5d9205e66e9..535ddc3dd66 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 99d2ef51e87..1e2d5fe86ef 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 3008c2f07e3..bcc928c2c30 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 9e0370f3f4e..2c5b1b9e7dc 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 1b52b56d7a5..6c33ba62363 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index a1caa31d85d..6f25d179857 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 079d207a9a4..d526da7627e 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 700ac14549a..7c091c67c50 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 785c64d11c1..6b00aaece8f 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f2371867324..025f255a746 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 47632b2aaa1..e4c00be5ec7 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e1aafcb73f3..1e9ba35a742 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 911fddb2440..70b3598aac5 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index b476a84100f..aa0f0c19236 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 004d4f289fa..a5271906bf1 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index f4384426722..63969f8694e 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 794ae0df0ea..e44973f27d1 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a6fb1653a84..3d903472aef 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index dadd487b01b..5f9897e2ee0 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 470a4e60623..0e4b234b4ff 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 40c4fc35f31..02cb7e9d398 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 2a98c1cee4e..10b324dcf96 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index ec6546aa94a..2507e04068b 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 038254f164f..65df48533a4 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e78d34802b4..e1247808073 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5ad778dad79..bd605665486 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 7e7e5645abe..dec013a2485 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8861afa800c..302f0bd9e7a 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ed2734984f4..4cb6860da97 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 53e848e2b79..fa28f5aeb12 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 408aa7bdc4e..d2902194c19 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 27a3e150c4b..72eac6329fa 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 8d64bef76c4..875e44c6f08 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 8fc9ef7e22b..cc28d67e093 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9906253b45d..bfc6d94e99f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 81063bf78bd..680ab5ba560 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 488df709fa5..6a54f796817 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2fe6fd2d9e6..24f1c8f9cf0 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 5af7d250813..4d7b2508f63 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 084d8c6b885..eb793fed135 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index bd905ca2c57..17c6a312c72 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 4c90d506354..192ab8e5256 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 699459d6860..11509256938 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index d32df044b7a..1c87aa8d1df 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 472a640ed9a..67dae3dd3be 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 86b39e37e1b..593bc845903 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index e2172a23b58..f559a9f3190 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5d08843d13a..70e44891594 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index c61d26e1e92..1b72a8e9082 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 3e8a4d2b0bf..d3903244988 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index a745de7da24..a971149508b 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index bf911cfcfbf..a92a77a1bc1 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 154056ef67a..1a910d347c4 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 27f3b871df9..80172dd6855 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index bdd1242b616..70bc9848c03 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 6a47a18231c..046a06a890b 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 5c5bd1c92d6..027d6520867 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index ef192545263..6adecb1bf45 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 45b95a8a6ab..093d536c3d5 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 72f66c15b38..dd86ed6f8ee 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 5472e30c558..42a33ff0cdc 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b5f381a7044..42c687ed7bb 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 778723b5c36..54f0071efde 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 9f1a4eaa293..5aa6f84e514 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 41f349cde40..7cf1ded5438 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 7b9cbf147bd..c0483cfd96c 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b786052e851..27779d8efe6 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b30e298d4ce..c19785ccaae 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 9a5e5c24c56..35e74fe68b4 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index b5f3b6ea21a..f230226b89e 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index ddb1a67c050..e53d5657d6e 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index dbd0d8252da..591e0dd75b7 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index ea528c8cb3b..c7e425b32bb 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index bbcdddb3ebc..cf382de0ae3 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 92204ebf55c..c1489cc0f77 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index d876631ce9b..d0701f564f1 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 9b477f406f4..97c1d9d86a4 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index db3ddf7af8a..c9b89ee8f7d 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e56d6c81bc8..4b4ed3450fe 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 51bc61faf24..8765785da54 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index f4e3dc2f3ac..552a8da97a3 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 6d711f86c85..74c73b303db 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 1f810f92e8b..757b0877a91 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 083612d6b95..6ce7dd1b2a0 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 15241ba1747..e05edde420a 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 1323dc53df9..467db34a1c9 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index df772e70403..ed601194eab 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index e145971eaee..c5e433c850e 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 95eb3f25f6b..f52e13379c5 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 22dbab6a9a7..a67b042b56d 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6b8fce26b14..f83c10096cc 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 611c3de3f02..ca9d6ddec35 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index bae324834a4..40d12631865 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 9f2b44ca18e..ac92bbc4865 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index b68e04a7699..32757d6d2e6 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 3188fd01ca9..ca4b98e326c 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index bbbcabe9be7..59cfdd51f87 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 759c08aafff..4b3640fae1b 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index eb573de5953..fd05551a838 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 902c246b7ff..401b5f3f897 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index f48f69de28c..e9bb69f2c0e 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index f5655267f6e..ef4d03946e1 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index bdb82b6d2ad..bcb60fbc82a 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index e837deda0ff..dd728d3549b 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index dc1b200a4c7..4e53bbf20ab 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7a493600bac..08f9459a9cc 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 91c40b6c638..6f88b5b340a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 57857ae38ee..1353cc18162 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index edc70b34a2f..232bdb7e9b5 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 3e0f4e60baa..23694f805ce 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 8daa61cb53b..b1f0efb11ac 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index b6b66dffe2f..123bf7a560e 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 13ee1b295e9..7c320b3a199 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 8637b8da269..cd025aec78d 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -24,6 +24,7 @@ "%s set the database host." => "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. ", "PostgreSQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL", "You need to enter either an existing account or the administrator." => "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή.", +"Oracle connection could not be established" => "Αδυναμία σύνδεσης Oracle", "MySQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL", "DB Error: \"%s\"" => "Σφάλμα Βάσης Δεδομένων: \"%s\"", "Offending command was: \"%s\"" => "Η εντολη παραβατικοτητας ηταν: \"%s\"", diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 2782be65da9..327fe75b9d2 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -15,6 +15,24 @@ "Files" => "Dosieroj", "Text" => "Teksto", "Images" => "Bildoj", +"Set an admin username." => "Starigi administran uzantonomon.", +"Set an admin password." => "Starigi administran pasvorton.", +"%s enter the database username." => "%s enigu la uzantonomon de la datumbazo.", +"%s enter the database name." => "%s enigu la nomon de la datumbazo.", +"%s you may not use dots in the database name" => "%s vi ne povas uzi punktojn en la nomo de la datumbazo", +"%s set the database host." => "%s enigu la gastigon de la datumbazo.", +"PostgreSQL username and/or password not valid" => "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas", +"Oracle connection could not be established" => "Konekto al Oracle ne povas stariĝi", +"MySQL username and/or password not valid" => "La uzantonomo de MySQL aŭ la pasvorto ne validas", +"DB Error: \"%s\"" => "Datumbaza eraro: “%s”", +"MySQL user '%s'@'localhost' exists already." => "La uzanto de MySQL “%s”@“localhost” jam ekzistas.", +"Drop this user from MySQL" => "Forigi ĉi tiun uzanton el MySQL", +"MySQL user '%s'@'%%' already exists" => "La uzanto de MySQL “%s”@“%%” jam ekzistas", +"Drop this user from MySQL." => "Forigi ĉi tiun uzanton el MySQL.", +"Oracle username and/or password not valid" => "La uzantonomo de Oracle aŭ la pasvorto ne validas", +"MS SQL username and/or password not valid: %s" => "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", +"Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "seconds ago" => "sekundoj antaŭe", "1 minute ago" => "antaŭ 1 minuto", "%d minutes ago" => "antaŭ %d minutoj", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 2c8bdbb8903..eee768db5cf 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -102,6 +102,7 @@ "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", +"Enter the recovery password in order to recover the users files during password change" => "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", "Default Storage" => "Προκαθορισμένη Αποθήκευση ", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 25b28b9021a..83e03f2f5df 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -24,6 +24,8 @@ "Delete" => "Forigi", "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", +"Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "Cron" => "Cron", "Sharing" => "Kunhavigo", "Enable Share API" => "Kapabligi API-on por Kunhavigo", -- GitLab From 7273b43cd5b0047207763ca48abc46e5d0fcb130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 25 Jun 2013 09:52:04 +0200 Subject: [PATCH 051/215] manuall calculate unix_timestamp for oracle --- lib/db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/db.php b/lib/db.php index a6b81aaba69..f6acf6af1b7 100644 --- a/lib/db.php +++ b/lib/db.php @@ -754,6 +754,7 @@ class OC_DB { }elseif( $type == 'oci' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', '((CAST(SYS_EXTRACT_UTC(systimestamp) AS DATE))-TO_DATE(\'1970101000000\',\'YYYYMMDDHH24MiSS\'))*24*3600', $query ); }elseif( $type == 'mssql' ) { $query = preg_replace( "/\`(.*?)`/", "[$1]", $query ); $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); -- GitLab From ddb0ff346d3d8063f88fdba8749e098a81b92d54 Mon Sep 17 00:00:00 2001 From: Roman Geber Date: Tue, 25 Jun 2013 12:24:14 +0200 Subject: [PATCH 052/215] Public upload feature --- apps/files/ajax/upload.php | 48 +++++++- apps/files/index.php | 3 +- apps/files/js/filelist.js | 24 +++- apps/files/js/files.js | 149 +----------------------- apps/files/templates/index.php | 2 +- apps/files_sharing/css/public.css | 61 +++++++++- apps/files_sharing/js/public.js | 19 ++- apps/files_sharing/public.php | 18 ++- apps/files_sharing/templates/public.php | 42 ++++++- core/js/share.js | 43 ++++++- lib/files/view.php | 2 +- 11 files changed, 242 insertions(+), 169 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e1263744e1b..12db682c1e2 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -1,17 +1,53 @@ array_merge(array('message' => $l->t('Unable to set upload directory.'))))); + die(); + } +} else { + $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); + + if ($linkItem === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); + die(); + } + + if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { + OCP\JSON::checkLoggedIn(); + } else { + + // The token defines the target directory (security reasons) + $dir = sprintf( + "/%s/%s", + $linkItem['file_target'], + isset($_POST['subdir']) ? $_POST['subdir'] : '' + ); + + if (!$dir || empty($dir) || $dir === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); + die(); + } + // Setup FS with owner + OC_Util::setupFS($linkItem['uid_owner']); + } +} + + +OCP\JSON::callCheck(); -$dir = $_POST['dir']; // get array with current storage stats (e.g. max file size) $storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir); diff --git a/apps/files/index.php b/apps/files/index.php index 20fbf7f93be..640c28c0075 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -26,6 +26,7 @@ OCP\User::checkLoggedIn(); // Load the files we need OCP\Util::addStyle('files', 'files'); +OCP\Util::addscript('files', 'file-upload'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); OCP\Util::addscript('files', 'jquery-visibility'); @@ -137,4 +138,4 @@ if ($needUpgrade) { $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); $tmpl->printPage(); -} \ No newline at end of file +} diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e19a35bbc5b..f4ca098eed1 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -71,8 +71,20 @@ var FileList={ tr.append(td); return tr; }, - addFile:function(name,size,lastModified,loading,hidden){ + addFile:function(name,size,lastModified,loading,hidden,param){ var imgurl; + + if (!param) { + param = {}; + } + + var download_url = null; + if (!param.download_url) { + download_url = OC.Router.generate('download', { file: $('#dir').val()+'/'+name }); + } else { + download_url = param.download_url; + } + if (loading) { imgurl = OC.imagePath('core', 'loading.gif'); } else { @@ -82,7 +94,7 @@ var FileList={ 'file', name, imgurl, - OC.Router.generate('download', { file: $('#dir').val()+'/'+name }), + download_url, size, lastModified, $('#permissions').val() @@ -197,7 +209,7 @@ var FileList={ len = input.val().length; } input.selectRange(0,len); - + form.submit(function(event){ event.stopPropagation(); event.preventDefault(); @@ -423,8 +435,12 @@ $(document).ready(function(){ size=data.files[0].size; } var date=new Date(); + var param = {}; + if ($('#publicUploadRequestToken')) { + param.download_url = document.location.href + '&download&path=/' + $('#dir').val() + '/' + uniqueName; + } // create new file context - data.context = FileList.addFile(uniqueName,size,date,true,false); + data.context = FileList.addFile(uniqueName,size,date,true,false,param); } } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 3438c1c30a1..51b3f31fb96 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -251,153 +251,6 @@ $(document).ready(function() { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - if ( document.getElementById('data-upload-form') ) { - $(function() { - $('#file_upload_start').fileupload({ - dropZone: $('#content'), // restrict dropZone to content div - //singleFileUploads is on by default, so the data.files array will always have length 1 - add: function(e, data) { - - if(data.files[0].type === '' && data.files[0].size == 4096) - { - data.textStatus = 'dirorzero'; - data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes'); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - return true; //don't upload this file but go on with next in queue - } - - var totalSize=0; - $.each(data.originalFiles, function(i,file){ - totalSize+=file.size; - }); - - if(totalSize>$('#max_upload').val()){ - data.textStatus = 'notenoughspace'; - data.errorThrown = t('files','Not enough space available'); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - return false; //don't upload anything - } - - // start the actual file upload - var jqXHR = data.submit(); - - // remember jqXHR to show warning to user when he navigates away but an upload is still in progress - if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { - var dirName = data.context.data('file'); - if(typeof uploadingFiles[dirName] === 'undefined') { - uploadingFiles[dirName] = {}; - } - uploadingFiles[dirName][data.files[0].name] = jqXHR; - } else { - uploadingFiles[data.files[0].name] = jqXHR; - } - - //show cancel button - if($('html.lte9').length === 0 && data.dataType !== 'iframe') { - $('#uploadprogresswrapper input.stop').show(); - } - }, - /** - * called after the first add, does NOT have the data param - * @param e - */ - start: function(e) { - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - }, - fail: function(e, data) { - if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { - if (data.textStatus === 'abort') { - $('#notification').text(t('files', 'Upload cancelled.')); - } else { - // HTTP connection problem - $('#notification').text(data.errorThrown); - } - $('#notification').fadeIn(); - //hide notification after 5 sec - setTimeout(function() { - $('#notification').fadeOut(); - }, 5000); - } - delete uploadingFiles[data.files[0].name]; - }, - progress: function(e, data) { - // TODO: show nice progress bar in file row - }, - progressall: function(e, data) { - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - var progress = (data.loaded/data.total)*100; - $('#uploadprogressbar').progressbar('value',progress); - }, - /** - * called for every successful upload - * @param e - * @param data - */ - done:function(e, data) { - // handle different responses (json or body from iframe for ie) - var response; - if (typeof data.result === 'string') { - response = data.result; - } else { - //fetch response from iframe - response = data.result[0].body.innerText; - } - var result=$.parseJSON(response); - - if(typeof result[0] !== 'undefined' && result[0].status === 'success') { - var file = result[0]; - } else { - data.textStatus = 'servererror'; - data.errorThrown = t('files', result.data.message); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - } - - var filename = result[0].originalname; - - // delete jqXHR reference - if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { - var dirName = data.context.data('file'); - delete uploadingFiles[dirName][filename]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } - } else { - delete uploadingFiles[filename]; - } - - }, - /** - * called after last upload - * @param e - * @param data - */ - stop: function(e, data) { - if(data.dataType !== 'iframe') { - $('#uploadprogresswrapper input.stop').hide(); - } - - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - - $('#uploadprogressbar').progressbar('value',100); - $('#uploadprogressbar').fadeOut(); - } - }) - }); - } $.assocArraySize = function(obj) { // http://stackoverflow.com/a/6700/11236 var size = 0, key; @@ -804,7 +657,7 @@ var dragOptions={ // sane browsers support using the distance option if ( $('html.ie').length === 0) { dragOptions['distance'] = 20; -} +} var folderDropOptions={ drop: function( event, ui ) { diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index b576253f4f0..b9119f2cb62 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -50,7 +50,7 @@
    - +
    diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 13298f113f8..68549d14fe1 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -15,15 +15,26 @@ body { padding:.5em; } -#details { +#header #details { color:#fff; + float: left; } +#header #public_upload, #header #download { font-weight:700; - margin-left:2em; + margin: 0 0.4em 0 2em; + padding: 0 5px; + height: 27px; + float: left; + +} + +#header #public_upload { + margin-left: 0.3em; } +#header #public_upload img, #header #download img { padding-left:.1em; padding-right:.3em; @@ -73,3 +84,49 @@ thead{ background-color: white; padding-left:0 !important; /* fixes multiselect bar offset on shared page */ } + +#data-upload-form { + position: relative; + right: 0; + height: 27px; + overflow: hidden; + padding: 0; + float: right; + display: inline; + margin: 0; +} + +#file_upload_start { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); + opacity: 0; + z-index: 20; + position: absolute !important; + top: 0; + left: 0; + width: 100% !important; +} + +.header-right #download span { + position: relative; + bottom: 3px; +} + +#publicUploadButtonMock { + position:relative; + display:block; + width:100%; + height:27px; + cursor:pointer; + z-index:10; + background-image:url('%webroot%/core/img/actions/upload.svg'); + background-repeat:no-repeat; + background-position:7px 6px; +} + +#publicUploadButtonMock span { + margin: 0 5px 0 28px; + position: relative; + top: -2px; + color: #555; +} diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 916e35419c1..0244f392a0e 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -7,6 +7,8 @@ function fileDownloadPath(dir, file) { return url; } +var form_data; + $(document).ready(function() { if (typeof FileActions !== 'undefined') { @@ -46,4 +48,19 @@ $(document).ready(function() { }); } -}); \ No newline at end of file + // Add some form data to the upload handler + file_upload_param.formData = { + MAX_FILE_SIZE: $('#uploadMaxFilesize').val(), + requesttoken: $('#publicUploadRequestToken').val(), + dirToken: $('#dirToken').val(), + appname: 'files_sharing', + subdir: $('input#dir').val() + }; + + // Add Uploadprogress Wrapper to controls bar + $('#controls').append($('#additional_controls div#uploadprogresswrapper')); + + // Cancel upload trigger + $('#cancel_upload_button').click(Files.cancelUploads); + +}); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 98d2a84fb66..fa8c25fc98d 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -132,15 +132,25 @@ if (isset($path)) { } exit(); } else { + OCP\Util::addScript('files', 'file-upload'); OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); OCP\Util::addScript('files', 'fileactions'); + OCP\Util::addScript('files', 'jquery.iframe-transport'); + OCP\Util::addScript('files', 'jquery.fileupload'); + $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); $tmpl = new OCP\Template('files_sharing', 'public', 'base'); $tmpl->assign('uidOwner', $shareOwner); $tmpl->assign('displayName', \OCP\User::getDisplayName($shareOwner)); $tmpl->assign('filename', $file); + $tmpl->assign('directory_path', $linkItem['file_target']); $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path)); $tmpl->assign('fileTarget', basename($linkItem['file_target'])); + $tmpl->assign('dirToken', $linkItem['token']); + $tmpl->assign('allowPublicUploadEnabled', (($linkItem['permissions'] & OCP\PERMISSION_CREATE) ? true : false )); + $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); + $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); + $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') .(isset($_GET['file'])?'&file='.$_GET['file']:''); @@ -191,15 +201,17 @@ if (isset($path)) { $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb); $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path='); + $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); $folder = new OCP\Template('files', 'index', ''); $folder->assign('fileList', $list->fetchPage()); $folder->assign('breadcrumb', $breadcrumbNav->fetchPage()); $folder->assign('dir', $getPath); $folder->assign('isCreatable', false); - $folder->assign('permissions', 0); + $folder->assign('permissions', OCP\PERMISSION_READ); + $folder->assign('isPublic',true); $folder->assign('files', $files); - $folder->assign('uploadMaxFilesize', 0); - $folder->assign('uploadMaxHumanFilesize', 0); + $folder->assign('uploadMaxFilesize', $maxUploadFilesize); + $folder->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); $tmpl->assign('folder', $folder->fetchPage()); diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index adf3c3e9cc8..3a1c370b4c0 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,3 +1,7 @@ +
    + +
    + @@ -13,13 +17,49 @@ t('%s shared the file %s with you', array($_['displayName'], $_['fileTarget']))) ?> + + Download" - />t('Download'))?> + />t('Download'))?> + + + + + + + + + + + + + +
    + + +
    diff --git a/core/js/share.js b/core/js/share.js index 36e4babedf9..cb37dd70366 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -156,6 +156,19 @@ OC.Share={ html += '
    '; } if (possiblePermissions & OC.PERMISSION_SHARE) { + // Determine the Allow Public Upload status. + // Used later on to determine if the + // respective checkbox should be checked or + // not. + + var allowPublicUploadStatus = false; + $.each(data.shares, function(key, value) { + if (allowPublicUploadStatus) { + return true; + } + allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; + }); + html += ''; html += '
      '; html += '
    '; @@ -168,12 +181,16 @@ OC.Share={ html += '
    '; html += ''; html += '
    '; - html += '
    '; + html += '
    '; html += ''; } + html += '
    '; html += ''; html += ''; @@ -370,6 +387,7 @@ OC.Share={ $('#expiration').show(); $('#emailPrivateLink #email').show(); $('#emailPrivateLink #emailButton').show(); + $('#allowPublicUploadWrapper').show(); }, hideLink:function() { $('#linkText').hide('blind'); @@ -378,6 +396,7 @@ OC.Share={ $('#linkPass').hide(); $('#emailPrivateLink #email').hide(); $('#emailPrivateLink #emailButton').hide(); + $('#allowPublicUploadWrapper').hide(); }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); @@ -543,6 +562,28 @@ $(document).ready(function() { $(this).select(); }); + // Handle the Allow Public Upload Checkbox + $(document).on('click', '#sharingDialogAllowPublicUpload', function() { + + // Gather data + var allowPublicUpload = $(this).is(':checked'); + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + var permissions = 0; + + // Calculate permissions + if (allowPublicUpload) { + permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ; + } else { + permissions = OC.PERMISSION_READ; + } + + // Update the share information + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { + return; + }); + }); + $(document).on('click', '#dropdown #showPassword', function() { $('#linkPass').toggle('blind'); if (!$('#showPassword').is(':checked') ) { diff --git a/lib/files/view.php b/lib/files/view.php index 25071709fbe..d8d99698023 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -754,7 +754,7 @@ class View { if ($subStorage) { $subCache = $subStorage->getCache(''); $rootEntry = $subCache->get(''); - $data['size'] += $rootEntry['size']; + $data['size'] += isset($rootEntry['size']) ? $rootEntry['size'] : 0; } } } -- GitLab From 9c9bfcd6261909963621162b2fd56cb33cba514a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 25 Jun 2013 17:45:42 +0300 Subject: [PATCH 053/215] log as index, not remote --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index a064aa5c76f..90fd3efcc96 100755 --- a/index.php +++ b/index.php @@ -32,6 +32,6 @@ try { } catch (Exception $ex) { //show the user a detailed error page OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); - \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + \OCP\Util::writeLog('index', $ex->getMessage(), \OCP\Util::FATAL); OC_Template::printExceptionErrorPage($ex); -} \ No newline at end of file +} -- GitLab From 620878033270b0cb987f419aa6df16cc4f626f06 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 25 Jun 2013 17:04:25 +0200 Subject: [PATCH 054/215] Sabre: throw exceptions when delete/create/write operations are not permitted --- lib/connector/sabre/directory.php | 15 +++++++++++++++ lib/connector/sabre/file.php | 15 ++++++++++++--- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 6ccb54b79ab..3d15a2a584d 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -45,9 +45,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * * @param string $name Name of the file * @param resource|string $data Initial payload + * @throws Sabre_DAV_Exception_Forbidden * @return null|string */ public function createFile($name, $data = null) { + + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { $info = OC_FileChunking::decodeName($name); if (empty($info)) { @@ -102,10 +108,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Creates a new subdirectory * * @param string $name + * @throws Sabre_DAV_Exception_Forbidden * @return void */ public function createDirectory($name) { + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + $newPath = $this->path . '/' . $name; if(!\OC\Files\Filesystem::mkdir($newPath)) { throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath); @@ -203,9 +214,13 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Deletes all files in this directory, and then itself * * @return void + * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { + if (!\OC\Files\Filesystem::isDeletable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } if ($this->path != "/Shared") { foreach($this->getChildren() as $child) $child->delete(); \OC\Files\Filesystem::rmdir($this->path); diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 91646312e90..438d9871c22 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -41,24 +41,29 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * return an ETag, and just return null. * * @param resource $data + * @throws Sabre_DAV_Exception_Forbidden * @return string|null */ public function put($data) { + if (!\OC\Files\Filesystem::isUpdatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; \OC\Files\Filesystem::file_put_contents($partpath, $data); //detect aborted upload - if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT') { if (isset($_SERVER['CONTENT_LENGTH'])) { $expected = $_SERVER['CONTENT_LENGTH']; $actual = \OC\Files\Filesystem::filesize($partpath); if ($actual != $expected) { \OC\Files\Filesystem::unlink($partpath); throw new Sabre_DAV_Exception_BadRequest( - 'expected filesize ' . $expected . ' got ' . $actual); + 'expected filesize ' . $expected . ' got ' . $actual); } } } @@ -69,7 +74,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D //allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if(\OC\Files\Filesystem::touch($this->path, $mtime)) { + if (\OC\Files\Filesystem::touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } @@ -92,9 +97,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * Delete the current file * * @return void + * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { + if (!\OC\Files\Filesystem::isDeletable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } \OC\Files\Filesystem::unlink($this->path); } -- GitLab From 592bb01ccde6e4fbbf9e306aa0bafddabf3b8b67 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 25 Jun 2013 21:57:00 +0200 Subject: [PATCH 055/215] phpunit: Remove PHPUnit_Util_Log_JSON which spammed to stdout on console. --- tests/phpunit.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/phpunit.xml b/tests/phpunit.xml index 510c38a3c8b..25dfc64cfeb 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml @@ -15,7 +15,4 @@ - - - -- GitLab From afc3d9314a79e146ea63fd11e389a9b7665f4982 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 26 Jun 2013 02:07:04 +0200 Subject: [PATCH 056/215] [tx-robot] updated from transifex --- apps/files/l10n/ro.php | 1 + apps/files_encryption/l10n/de_DE.php | 5 ++ apps/files_encryption/l10n/es.php | 2 + apps/files_encryption/l10n/es_AR.php | 32 ++++++++++++- apps/files_encryption/l10n/nl.php | 12 +++++ apps/files_encryption/l10n/pt_BR.php | 7 +++ core/l10n/nl.php | 61 ++++++++++++------------ core/l10n/ro.php | 9 +++- core/l10n/zh_TW.php | 1 + l10n/af_ZA/core.po | 4 +- l10n/af_ZA/lib.po | 4 +- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 4 +- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 6 +-- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 16 +++---- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 6 +-- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 12 +++-- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 66 +++++++++++++------------- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 8 ++-- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 69 ++++++++++++++-------------- l10n/nl/files.po | 4 +- l10n/nl/files_encryption.po | 30 ++++++------ l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_encryption.po | 20 ++++---- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 23 +++++----- l10n/ro/files.po | 9 ++-- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 9 ++-- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- 545 files changed, 1273 insertions(+), 1201 deletions(-) diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 8fdf62aeb32..59c12c57a38 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -46,6 +46,7 @@ "{count} folders" => "{count} foldare", "1 file" => "1 fisier", "{count} files" => "{count} fisiere", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud", "Unable to rename file" => "Nu s-a putut redenumi fișierul", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 892bf435fc8..59ccbaa1fc1 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -5,6 +5,10 @@ "Could not disable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", "Password successfully changed." => "Das Passwort wurde erfolgreich geändert.", "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", +"Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", +"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", +"PHP module OpenSSL is not installed." => "Das PHP-Modul OpenSSL ist nicht installiert.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert.", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", "personal settings" => "Persönliche Einstellungen", @@ -15,6 +19,7 @@ " If you don't remember your old password you can ask your administrator to recover your files." => "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.", "Old log-in password" => "Altes Login-Passwort", "Current log-in password" => "Momentanes Login-Passwort", +"Update Private Key Password" => "Das Passwort des privaten Schlüssels aktualisieren", "Enable password recovery:" => "Passwort-Wiederherstellung aktivieren:", "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index cb2bad1baba..74891279355 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -6,11 +6,13 @@ "Password successfully changed." => "Su contraseña ha sido cambiada", "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", +"Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", "Saving..." => "Guardando...", "Encryption" => "Cifrado", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change Password" => "Cambiar contraseña", +"Enable password recovery:" => "Habilitar la recuperación de contraseña:", "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 16b27fcefb6..e7f28e1e1f6 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -1,6 +1,36 @@ "Se habilitó la recuperación de archivos", +"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.", +"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", +"Could not disable recovery key. Please check your recovery key password!" => "No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña.", "Password successfully changed." => "Tu contraseña fue cambiada", "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.", +"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", +"Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada de alguna manera. Podés actualizar tu clave privada de contraseña en 'configuración personal' para tener acceso nuevamente a tus archivos", +"PHP module OpenSSL is not installed." => "El módulo OpenSSL para PHP no está instalado.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada.", "Saving..." => "Guardando...", -"Encryption" => "Encriptación" +"Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", +"You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", +"personal settings" => "Configuración personal", +"Encryption" => "Encriptación", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso en que pierdas la contraseña):", +"Recovery key password" => "Contraseña de recuperación de clave", +"Enabled" => "Habilitado", +"Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar contraseña para recuperar la clave:", +"Old Recovery key password" => "Contraseña antigua de recuperación de clave", +"New Recovery key password" => "Nueva contraseña de recuperación de clave", +"Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Tu contraseña de recuperación de clave ya no coincide con la contraseña de ingreso:", +"Set your old private key password to your current log-in password." => "Usá tu contraseña de recuperación de clave antigua para tu contraseña de ingreso actual.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos", +"Old log-in password" => "Contraseña anterior", +"Current log-in password" => "Contraseña actual", +"Update Private Key Password" => "Actualizar contraseña de la clave privada", +"Enable password recovery:" => "Habilitar contraseña de recuperación:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitando esta opción te va a permitir tener acceso a tus archivos encriptados incluso si perdés la contraseña", +"File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas", +"Could not update file recovery" => "No fue posible actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index b59902a4c9c..56b4a9bfb38 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -5,14 +5,26 @@ "Could not disable recovery key. Please check your recovery key password!" => "Kon herstelsleutel niet deactiveren. Controleer het wachtwoord van uw herstelsleutel!", "Password successfully changed." => "Wachtwoord succesvol gewijzigd.", "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", +"Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", +"Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel bijwerking in uw persoonlijke instellingen om bij uw bestanden te komen.", +"PHP module OpenSSL is not installed." => "PHP module OpenSSL is niet geïnstalleerd.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd.", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", "personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", +"Enable recovery key (allow to recover users files in case of password loss):" => "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):", +"Recovery key password" => "Wachtwoord herstelsleulel", "Enabled" => "Geactiveerd", "Disabled" => "Gedeactiveerd", +"Change recovery key password:" => "Wijzig wachtwoord herstelsleutel:", +"Old Recovery key password" => "Oude wachtwoord herstelsleutel", +"New Recovery key password" => "Nieuwe wachtwoord herstelsleutel", "Change Password" => "Wijzigen wachtwoord", +"Your private key password no longer match your log-in password:" => "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:", +"Set your old private key password to your current log-in password." => "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord.", " If you don't remember your old password you can ask your administrator to recover your files." => "Als u uw oude wachtwoord niet meer weet, kunt u uw beheerder vragen uw bestanden terug te halen.", "Old log-in password" => "Oude wachtwoord", "Current log-in password" => "Huidige wachtwoord", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 8e2b2a129a7..cb1678541bf 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,13 +8,20 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada. Você pode atualizar sua senha de chave privada nas suas configurações pessoais para obter novamente acesso aos seus arquivos.", +"PHP module OpenSSL is not installed." => "O módulo PHP OpenSSL não está instalado.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada.", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", "personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", +"Recovery key password" => "Senha da chave de recuperação", "Enabled" => "Habilidado", "Disabled" => "Desabilitado", +"Change recovery key password:" => "Mudar a senha da chave de recuperação:", +"Old Recovery key password" => "Senha antiga da chave de recuperação", +"New Recovery key password" => "Nova senha da chave de recuperação", "Change Password" => "Trocar Senha", "Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:", "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c28dead76dd..1905092886e 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,20 +1,20 @@ "%s deelde »%s« met u", +"%s shared »%s« with you" => "%s deelde »%s« met jou", "Category type not provided." => "Categorie type niet opgegeven.", -"No category to add?" => "Geen categorie toevoegen?", +"No category to add?" => "Geen categorie om toe te voegen?", "This category already exists: %s" => "Deze categorie bestaat al: %s", "Object type not provided." => "Object type niet opgegeven.", "%s ID not provided." => "%s ID niet opgegeven.", "Error adding %s to favorites." => "Toevoegen van %s aan favorieten is mislukt.", "No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.", "Error removing %s from favorites." => "Verwijderen %s van favorieten is mislukt.", -"Sunday" => "Zondag", -"Monday" => "Maandag", -"Tuesday" => "Dinsdag", -"Wednesday" => "Woensdag", -"Thursday" => "Donderdag", -"Friday" => "Vrijdag", -"Saturday" => "Zaterdag", +"Sunday" => "zondag", +"Monday" => "maandag", +"Tuesday" => "dinsdag", +"Wednesday" => "woensdag", +"Thursday" => "donderdag", +"Friday" => "vrijdag", +"Saturday" => "zaterdag", "January" => "januari", "February" => "februari", "March" => "maart", @@ -60,13 +60,13 @@ "Shared with you by {owner}" => "Gedeeld met u door {owner}", "Share with" => "Deel met", "Share with link" => "Deel met link", -"Password protect" => "Wachtwoord beveiliging", +"Password protect" => "Wachtwoord beveiligd", "Password" => "Wachtwoord", "Email link to person" => "E-mail link naar persoon", "Send" => "Versturen", "Set expiration date" => "Stel vervaldatum in", "Expiration date" => "Vervaldatum", -"Share via email:" => "Deel via email:", +"Share via email:" => "Deel via e-mail:", "No people found" => "Geen mensen gevonden", "Resharing is not allowed" => "Verder delen is niet toegestaan", "Shared in {item} with {user}" => "Gedeeld in {item} met {user}", @@ -83,18 +83,19 @@ "Sending ..." => "Versturen ...", "Email sent" => "E-mail verzonden", "The update was unsuccessful. Please report this issue to the ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.", -"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. U wordt teruggeleid naar uw eigen ownCloud.", -"ownCloud password reset" => "ownCloud wachtwoord herstellen", +"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.", +"ownCloud password reset" => "ownCloud-wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", -"The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "De link voor het resetten van uw wachtwoord is verzonden naar uw e-mailadres.
    Als u dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan uw beheerder om te helpen.", -"Request failed!
    Did you make sure your email/username was right?" => "Aanvraag mislukt!
    Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?", -"You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.", +"The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "De link voor het resetten van je wachtwoord is verzonden naar je e-mailadres.
    Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan je beheerder om te helpen.", +"Request failed!
    Did you make sure your email/username was right?" => "Aanvraag mislukt!
    Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?", +"You will receive a link to reset your password via Email." => "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail.", "Username" => "Gebruikersnaam", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Je bestanden zijn versleuteld. Als je geen recoverykey hebt ingeschakeld is er geen manier om je data terug te krijgen indien je je wachtwoord reset!\nAls je niet weet wat te doen, neem dan alsjeblieft contact op met je administrator eer je doorgaat.\nWil je echt doorgaan?", "Yes, I really want to reset my password now" => "Ja, ik wil mijn wachtwoord nu echt resetten", "Request reset" => "Resetaanvraag", "Your password was reset" => "Je wachtwoord is gewijzigd", "To login page" => "Naar de login-pagina", -"New password" => "Nieuw", +"New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", "Personal" => "Persoonlijk", "Users" => "Gebruikers", @@ -103,17 +104,17 @@ "Help" => "Help", "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met u.\nBekijk: %s\n\nVeel plezier!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!", "web services under your control" => "Webdiensten in eigen beheer", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", -"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", -"Please update your PHP installation to use ownCloud securely." => "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken.", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Uw gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess bestand niet werkt.", -"For information how to properly configure your server, please see the documentation." => "Informatie over het configureren van uw server is hier te vinden documentatie.", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Werk je PHP-installatie bij om ownCloud veilig te kunnen gebruiken.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL-extentie aan.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de resettokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt.", +"For information how to properly configure your server, please see the documentation." => "Informatie over het configureren van uw server is hier te vinden.", "Create an admin account" => "Maak een beheerdersaccount aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", @@ -123,19 +124,19 @@ "Database password" => "Wachtwoord database", "Database name" => "Naam database", "Database tablespace" => "Database tablespace", -"Database host" => "Database server", +"Database host" => "Databaseserver", "Finish setup" => "Installatie afronden", "%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", -"If you did not change your password recently, your account may be compromised!" => "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!", -"Please change your password to secure your account again." => "Wijzig uw wachtwoord zodat uw account weer beveiligd is.", -"Lost your password?" => "Uw wachtwoord vergeten?", +"If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!", +"Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.", +"Lost your password?" => "Wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", -"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hallo daar,

    %s deelde »%s« met u.
    Bekijk!

    Veel plezier!", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hallo daar,

    %s deelde »%s« met jou.
    Bekijk!

    Veel plezier!", "prev" => "vorige", "next" => "volgende", -"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren." +"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..." ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 4a430fb7d2f..327fb72f430 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,5 +1,6 @@ "Tipul de categorie nu este prevazut", +"%s shared »%s« with you" => "%s Partajat »%s« cu tine de", +"Category type not provided." => "Tipul de categorie nu a fost specificat.", "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: %s" => "Această categorie deja există: %s", "Object type not provided." => "Tipul obiectului nu este prevazut", @@ -42,6 +43,7 @@ "years ago" => "ani în urmă", "Choose" => "Alege", "Cancel" => "Anulare", +"Error loading file picker template" => "Eroare la încărcarea șablonului selectorului de fișiere", "Yes" => "Da", "No" => "Nu", "Ok" => "Ok", @@ -88,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Cerere esuata!
    Esti sigur ca email-ul/numele de utilizator sunt corecte?", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", "Username" => "Nume utilizator", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Fișierele tale sunt criptate. Dacă nu ai activat o cheie de recuperare, nu va mai exista nici o metodă prin care să îți recuperezi datele după resetarea parole. Dacă nu ești sigur în privința la ce ai de făcut, contactează un administrator înainte să continuii. Chiar vrei să continui?", +"Yes, I really want to reset my password now" => "Da, eu chiar doresc să îmi resetez parola acum", "Request reset" => "Cerere trimisă", "Your password was reset" => "Parola a fost resetată", "To login page" => "Spre pagina de autentificare", @@ -100,6 +104,7 @@ "Help" => "Ajutor", "Access forbidden" => "Acces interzis", "Cloud not found" => "Nu s-a găsit", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!", "web services under your control" => "servicii web controlate de tine", "Edit categories" => "Editează categorii", "Add" => "Adaugă", @@ -121,6 +126,7 @@ "Database tablespace" => "Tabela de spațiu a bazei de date", "Database host" => "Bază date", "Finish setup" => "Finalizează instalarea", +"%s is available. Get more information on how to update." => "%s este disponibil. Vezi mai multe informații despre procesul de actualizare.", "Log out" => "Ieșire", "Automatic logon rejected!" => "Logare automata respinsa", "If you did not change your password recently, your account may be compromised!" => "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis", @@ -129,6 +135,7 @@ "remember" => "amintește", "Log in" => "Autentificare", "Alternative Logins" => "Conectări alternative", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Salutare,

    Vă aduc la cunoștință că %s a partajat %s cu tine.
    Accesează-l!

    Numai bine!", "prev" => "precedentul", "next" => "următorul", "Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 0270e921e34..306ae7acb8c 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -89,6 +89,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "請求失敗!
    您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", "Username" => "使用者名稱", +"Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。", "Request reset" => "請求重設", "Your password was reset" => "您的密碼已重設", "To login page" => "至登入頁面", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index c398a0246e4..41e885396d7 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 55f760e7636..d0aaba84772 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 19fb5c4dfec..cafbf8b0d93 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 442f9884e27..f3cafe7a6e7 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 62dfedc1b11..6f517e7c90a 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index f60201d93d8..3f47cdeda06 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 8eff71b6087..1b87c576798 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 06e93fda201..5d21c869ed6 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 7d6843d46ed..f19133fabb0 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 3026f4176fd..12b60c39728 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1fb7ac0ac22..df6f19e4e53 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index d0359ac36fb..00812512505 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 46a8af31826..40ddac8dbdd 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index fa57282c548..f024808d5a6 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index a4031363292..63b2b436ea8 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 78b4b0477b7..e195eb4ba19 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f49178b4df1..eb25bb66484 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index f2b45a44368..e500fe54fd7 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index ae72a1c51f1..0a3a474d3e2 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 530f53b57b8..81d1cf99871 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index b118377a467..25bef73f5e7 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 751a0e9851c..0b17a43cbaf 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 45917e8c2c2..b7d203caa12 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index e417029cbe7..78a9b05024a 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 737a232ea73..bf61fd2004b 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index d02da047cc0..b934bec3990 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 3fa561583a5..a56fe6475db 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 3ac54f3ac08..bc87fa7673a 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index e1c98571073..baa1264b2f4 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 94ffdf56d2a..74b3246d057 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index f6c844a09a4..3848fb765d1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 6b2a1a6c639..380d2ad0e62 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 2a393ccd023..32b91213c24 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 01ae128cda2..f4c82a2a13c 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index ee59377b786..21e1e2b42bd 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 224002bec7e..f3d1dacbdb8 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index c3dbbbfeb4b..095ed8b8723 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 18496bd40a1..f914ae46947 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 408a7c8ceb4..8e82ebd7f83 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index da8c3be275b..e3716085af2 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index cd6710a33c3..7ca1084cbab 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 1021b1210a6..4c929a0feb4 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 360f342135a..9ce3a578284 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7f6cb2e2194..e20ff07ce6f 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index f7564303444..9c2f882ee6f 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 86563696dd0..2fdd1c36335 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 0fe4ae3c2ed..901b0210895 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 4c97c164051..4d2a2eae5c0 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c46fa8d8d53..0a57a9cde56 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 93df73432e7..5788c4b356c 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 9b81324b0d3..d36b3089295 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 099a3b8452d..8c3ebe31740 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index eb05e50dafb..0cafa6fa3fe 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 2b308638333..ee143650862 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 748ec0b000a..14ec9de6698 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index bd57790c5e6..360b6a00758 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 3839cd41de9..63aa4bc1737 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 17b13125e27..c0a227946da 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 863ce3a21f1..3e77cbaf0d0 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 81dfc4cd9c7..d95f5c114dc 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 6297d10e64a..e6f5ed9d780 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 8e263192397..3329cb8d3ff 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5f850530349..ee99969b612 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index a4c10686841..36c2eaf3742 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f50c4876f3e..47a0b7c931b 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 3252322f944..0febaa69c38 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 059c1dece13..8694bc30450 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 20f12e57ef8..b193c6a20d7 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 346052389ed..81d2d4aaa21 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b08fe56ccf3..b3b252cecb7 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index c5e54a7924f..d1dd4477eb4 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index d645fee80e3..6440ed6d3ad 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 13:00+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,13 +47,13 @@ msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Pass #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." #: files/error.php:7 msgid "" @@ -64,13 +64,13 @@ msgstr "" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Das PHP-Modul OpenSSL ist nicht installiert." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert." #: js/settings-admin.js:11 msgid "Saving..." @@ -151,7 +151,7 @@ msgstr "Momentanes Login-Passwort" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Das Passwort des privaten Schlüssels aktualisieren" #: templates/settings-personal.php:45 msgid "Enable password recovery:" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 2e742ac65b2..36c187ac1f2 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index e2e3c71b942..10fc41ca5d1 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 3691f145269..af00f22b582 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 37520771812..d150c9ea1f2 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 3edee2d3106..518f1aa7485 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 57539d1473a..393a83e49f5 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4c873557712..7522d7cf10c 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index e41025176d0..b6072df48b8 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 9fe5f292781..b06796c7f85 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index b5ae360acc9..d6cfe458552 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 69c33de5c5f..d15ee15a56b 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 0b2772c842e..6098e170aa9 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 36c3e09347e..f8360c568f8 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 9f039f015bc..d1fbba123f7 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 384d362de3a..309bf275953 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 5a12cdfcd94..7ceb81b1df6 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3db6f7cc5de..38371de9a25 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 2d5de0277fe..55a57eb0438 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index a522b3897f1..b19e65069ec 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index b7321474a28..e55df6f34d8 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9db18653f9e..9889535bc5a 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 5af25201691..80a9c4ce8c4 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index ad398470be6..d3fc64da1d9 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 629841809f4..6b8a1a6a30c 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index a248abc333e..3a028120c63 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 90d2b225cb1..eaa87e4858e 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 5084af53bf3..7a064fb6f37 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -5,13 +5,15 @@ # Translators: # gmoriello , 2013 # saskarip , 2013 +# William Díaz , 2013 +# xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 21:40+0000\n" +"Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +55,7 @@ msgstr "Contraseña de clave privada actualizada con éxito." msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." #: files/error.php:7 msgid "" @@ -155,7 +157,7 @@ msgstr "" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar la recuperación de contraseña:" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index d4d80d382bd..b4100782eb4 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 1e79369bf20..ef1b9977dce 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 560b857e051..8a72120f5d9 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 53411f555d1..9cfbcf417e3 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 46545c8a8ae..d4aef6810bd 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 41e1d950da8..9b35e733847 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index ba55fafabb2..8fbf7359904 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index becd5ac9c06..fec836f5f22 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 0a53465ff85..aca16b2665d 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 14:40+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +20,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Se habilitó la recuperación de archivos" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Clave de recuperación deshabilitada" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña." #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -46,30 +46,30 @@ msgstr "No se pudo cambiar la contraseña. Comprobá que la contraseña actual s #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Contraseña de clave privada actualizada con éxito." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada de alguna manera. Podés actualizar tu clave privada de contraseña en 'configuración personal' para tener acceso nuevamente a tus archivos" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "El módulo OpenSSL para PHP no está instalado." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -79,15 +79,15 @@ msgstr "Guardando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Podés desbloquear tu clave privada en tu" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Configuración personal" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -96,76 +96,76 @@ msgstr "Encriptación" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso en que pierdas la contraseña):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de recuperación de clave" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Habilitado" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar contraseña para recuperar la clave:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Contraseña antigua de recuperación de clave" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nueva contraseña de recuperación de clave" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Tu contraseña de recuperación de clave ya no coincide con la contraseña de ingreso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Usá tu contraseña de recuperación de clave antigua para tu contraseña de ingreso actual." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña anterior" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar contraseña de la clave privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar contraseña de recuperación:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitando esta opción te va a permitir tener acceso a tus archivos encriptados incluso si perdés la contraseña" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "Las opciones de recuperación de archivos fueron actualizadas" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "No fue posible actualizar la recuperación de archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 153c3b140ed..924acbadc41 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 718febc53f1..40f68783157 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 81756c5b9d6..6448c511db4 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index bb5902339cb..e953455fb68 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index c3a95fcbe46..e3d1016a35a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 10fce34ab01..6c5085952d2 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 6762d0ea54f..cf57d1175c9 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index b6734e29813..c07fd0d3169 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 7ea8f1b805b..bb43b85a2f3 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 6a2d0891b3b..0ea609f1c01 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 31835743a5e..1d550e0201f 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index c44a64127bd..84997870013 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index a9dfe623574..6113a81c875 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 7e32f90b1a2..633c23e05e1 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 74447d964e9..4075125d91e 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e024c4ec12c..e56b4fdfcf4 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index f02508e3641..2b0ef136fa7 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 9c6d95fc487..0d033e3d96e 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 5adee1473f9..8a909233408 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 9f1cf526265..f5ed84b74d7 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1b79eebf897..f1faa72a3fb 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 05346b9b9c0..56e299b9131 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 721a508409a..1cc51050faa 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ac1121b8501..3a5b7779bd4 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index f4760822449..a8224ed9b2d 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index d58b88919a9..9e3677fcdd7 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 5e60d353f5c..54e6f844568 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 736659c2d66..a9ac1b53c73 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index df0c99321cb..9a6956a5514 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 2063a13bc84..c09193d7c95 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index d0eac27adbd..509eb435e39 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index f6e21219d6c..b5f034992c5 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index dd248b49243..14a8a6d025a 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 0e8c414c4f0..4d175ceb535 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index a75d8905068..b801dab5012 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index b4b2643461c..3bb2c74afca 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 3a3ae42e7da..2a3545238a2 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 65d33f9fae7..af5ea17cd63 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 781fb4fd5f5..38f654610fc 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e898f15c676..e383782a587 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 41a494fa0eb..bfb9c872a9b 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 299368667a9..06fd8fa8cb8 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 6e059d646d6..7d5f29bf0a0 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 7af2a0864dd..a5f08d463f6 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 761eebdff58..08e7fed71fd 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index c16f3f48ed1..c4b7ee0fee8 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 7fc104a46ce..4ae5147bca8 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 03dd4721a8b..684d45ae22f 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index df23ac5755b..c03d12e2685 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 722b853e7ae..432220cf0a2 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index b60cbfa392a..23c264433c8 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index deac492ebe4..750805bb5b0 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 868c045c88a..c25f1a45148 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 445521bc6df..5d626e7ef43 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 24f590e80df..96d097adf83 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 4e3058b2563..833ad6436c3 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 95238ab1d8b..7db359cc679 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 84303f7131d..e1a1fbc7809 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index f082ef709cf..3093babfb45 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 836576975ad..5d16ab1f58e 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 3d070972904..e9072e8a080 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 8c0ee57df43..e287c5fe8f9 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 2ff68d38128..16cd4bf3461 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index fd9534344b7..118e99b7e50 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index d5ad04c08da..f8ac471b2ba 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index b2cced49e25..fcb4fb73049 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 95e832b9366..f2b442e6d78 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index cea4bc5e3a5..65a5177cdba 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index c4fba92b672..7ca4969c3ba 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 62b262a66e8..fac04e71f06 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 3055cdec162..02db02f21fa 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 914c763a8ec..c05a173698b 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 8f8985d8d50..19364072edd 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index cf2df27bbdf..ebc29ae86cb 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 6e106da39de..ea61959f14b 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f1e1da92c57..26b1d2e455d 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index c4fb8c18d55..bc1e33cad00 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 7ffdafc5145..160a54c12c1 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 32129adf289..be74cef5361 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index d2d80a21cef..c31be35ab08 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index f9ec17656f9..76b57d1474f 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index f603edd312f..830ee08a234 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index f8bc5720784..b09b8cf248c 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 57930c3aba9..516a9ae1379 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 166908dc603..d78ba4b31e5 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 4e045aa92cb..d38be332ec5 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 82e47f1d191..b4c9764d4ca 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index cc4b95d1fa6..13c98472dc3 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index bbc02a15691..f04d0346a57 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 58d4ca6f79d..4b3ff1b6caf 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index ee275856d3b..dbd84ee318f 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 66664425d1b..9d6bb20c703 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index b4d68fd3ad2..fe1b763855c 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 68e60820197..eca8b4b8f6e 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 129186c2b20..2636b71dfcd 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 8b2b0d44b4d..7879939ac5a 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 6253a52d25b..749189c5713 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 977993c0c5f..be8fb9a574f 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 452756c1bd6..f4afa3dfdbc 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2bc9db17855..9e877f02f3c 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 3041d60c726..40f8eedd3fb 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 53932e10e04..a46f1e833ee 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index e5d040661c7..330ad870c16 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index b8fc14b97bb..34340946f1a 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 9cae0d9b69a..573c7054e9c 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d29ce5dc992..b5018ef31a5 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index d368243b2f9..1ab495a8a04 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index a50df8b0fe0..6ca4b051a2a 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5630c70d557..92852949b2c 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 98a5c79dd98..1d4fbf8f8d9 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 3c617585942..6a3e978763e 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index b348db4d2ba..fcdf9ed4491 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 75a3f680cf5..cf8defcbfff 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 760df5289ea..579178888ec 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 7de23ca415c..a3c37675feb 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 30f12007933..ef76904aae0 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 3f774819bc3..78802e5f8aa 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 3821c957017..7d3a36edcd4 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ba991ee4ab4..486239368ec 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index fef3f1d26de..2a02df7abff 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 0ef0bdb50f7..9641d4ea4c1 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index ee2243de200..2ed082766ac 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 004b309857b..929e166861b 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 7dfe54ebee6..00e48278dd6 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 673d0ed6d1b..7a5ee41ff87 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 58d7b40ef96..f273abf31cf 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 9f5016e1561..7e0a6087cb1 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index f6b49738a33..2c43aa9d884 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index adc8f908f1e..f71135a4048 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index c592cade332..246c9919055 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 7a4a81e7267..6b5d02a2118 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 7197808c4b8..aee96750929 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index cca36c65652..f7a8d12a954 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 2ee7f310bb5..a9416312adb 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f5da4d91781..db3f481b551 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 857af3f92d6..4326c97a246 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3afc3e0e188..1a06f9ff89a 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a23ae756b22..a74387a3f44 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ujuc Gang , 2013 -# ujuc Gang , 2013 +# Sungjin Gang , 2013 +# Sungjin Gang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 32baedf12eb..0606fb0befd 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 3d2e8d58ca8..b9ed8f63e2b 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 007b472165a..2ae1c30a58a 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 6b98e67345d..8702193d425 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 471f688843a..640e2b716b8 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index e3224636631..b8c1652f407 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index f02d873600a..6f028252c5f 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index eabe26c857c..7e56ad50b9f 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index d617c9a26c9..59c485719c6 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index f6ca6a5fd8d..430deabcf51 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index d1dd01b87aa..91e8e03ad68 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index f8c6c2b2572..42d84255765 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 66eb4c6c3eb..bf2b259100d 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 8873636d86e..6ed7a21be02 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 6376fb72755..87834dbf1b7 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 312ca589f78..8a0f12b4a8e 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 2d5e31f158f..a9c0f94523c 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 45a37f4e9ca..ba8b049e877 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index d1a63938f98..60fc60b4e98 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 758989a2e9d..47f293f5bbf 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index b6df3996373..898ef2e3a59 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index b43c66c5f99..acf0e28b8af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 992acbe464b..2028ee0aced 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 95142361ea9..ba74135ddaf 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index a07516fcaf5..1bc412436fe 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index e190013b483..195fdcf27ed 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 58869455f65..939a04910b2 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index d7c544655fa..f609ccc3801 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 5e2f4f76663..d9934d3d7cb 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 20754352ebf..d89c0e2266c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 11f96c28d52..5b5938acad3 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 3be11866263..e5edb12e983 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 7f9b45afb1e..8575c230061 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 0a324d8bbb7..6533f9f9e21 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 0801338ceb1..25b9d7cae55 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 798bce4b4b0..ad414f1eba4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 0ceb5f5c7fa..4bf9f4e471c 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6fe9e775fcb..6a84676919d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 413e3cf10c2..f77534ce047 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index b6363d57e3b..6bb215dc2fb 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 59f0e864a38..d1af7482439 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index cc88f6e4290..a0b4bc4a155 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index f0d99d865a2..4cd7f8ed54c 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3993883ecc9..8391e49a28f 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 2e3b371570b..97a0b85713c 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 0b7cdb2d2c8..843daf97d54 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 54a7105fe33..17c0d30f7a7 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 05f9d279b11..adf2524588b 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 4c882b2bb31..235ff893169 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 1b9fe0a222d..5fdf6338aa6 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 7e93c2fe9f9..2eb4f60fc04 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 32b5bacee2e..a6041e01c60 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 8ce89d95d25..3d198f9dd9f 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 46d3bf1da45..516852def2f 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 32b4f8ce155..950211e9b2d 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 360d3b53047..a2fd69ceacf 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 6a78f683f0d..78a5dd6e1d4 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 15978699b8b..b44d52211e6 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c6ea80174f1..36898ad1be3 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 386f892ed9a..61769ee279e 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a7787efd000..fe4c94e896f 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 91868ad3f48..51f52b419bc 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 89b5155f547..0b6240bd983 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 339f3085e0c..b1d3711727e 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3b1dee392a9..07f39f2fbe4 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 430a8bb0273..acf73fb8fdb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,13 +4,14 @@ # # Translators: # André Koot , 2013 +# Jorcee , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: Jorcee \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "%s deelde »%s« met u" +msgstr "%s deelde »%s« met jou" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -29,7 +30,7 @@ msgstr "Categorie type niet opgegeven." #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Geen categorie toevoegen?" +msgstr "Geen categorie om toe te voegen?" #: ajax/vcategories/add.php:37 #, php-format @@ -64,31 +65,31 @@ msgstr "Verwijderen %s van favorieten is mislukt." #: js/config.php:34 msgid "Sunday" -msgstr "Zondag" +msgstr "zondag" #: js/config.php:35 msgid "Monday" -msgstr "Maandag" +msgstr "maandag" #: js/config.php:36 msgid "Tuesday" -msgstr "Dinsdag" +msgstr "dinsdag" #: js/config.php:37 msgid "Wednesday" -msgstr "Woensdag" +msgstr "woensdag" #: js/config.php:38 msgid "Thursday" -msgstr "Donderdag" +msgstr "donderdag" #: js/config.php:39 msgid "Friday" -msgstr "Vrijdag" +msgstr "vrijdag" #: js/config.php:40 msgid "Saturday" -msgstr "Zaterdag" +msgstr "zaterdag" #: js/config.php:45 msgid "January" @@ -277,7 +278,7 @@ msgstr "Deel met link" #: js/share.js:167 msgid "Password protect" -msgstr "Wachtwoord beveiliging" +msgstr "Wachtwoord beveiligd" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" @@ -301,7 +302,7 @@ msgstr "Vervaldatum" #: js/share.js:211 msgid "Share via email:" -msgstr "Deel via email:" +msgstr "Deel via e-mail:" #: js/share.js:213 msgid "No people found" @@ -372,11 +373,11 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "De link voor het resetten van uw wachtwoord is verzonden naar uw e-mailadres.
    Als u dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan uw beheerder om te helpen." +msgstr "De link voor het resetten van je wachtwoord is verzonden naar je e-mailadres.
    Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan je beheerder om te helpen." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "Aanvraag mislukt!
    Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?" +msgstr "Aanvraag mislukt!
    Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail." +msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -408,7 +409,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Je bestanden zijn versleuteld. Als je geen recoverykey hebt ingeschakeld is er geen manier om je data terug te krijgen indien je je wachtwoord reset!\nAls je niet weet wat te doen, neem dan alsjeblieft contact op met je administrator eer je doorgaat.\nWil je echt doorgaan?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -428,7 +429,7 @@ msgstr "Naar de login-pagina" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nieuw" +msgstr "Nieuw wachtwoord" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "Hallo daar,\n\n%s deelde %s met u.\nBekijk: %s\n\nVeel plezier!" +msgstr "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -492,36 +493,36 @@ msgstr "Beveiligingswaarschuwing" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" +msgstr "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken." +msgstr "Werk je PHP-installatie bij om ownCloud veilig te kunnen gebruiken." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan." +msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL-extentie aan." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." +msgstr "Zonder random nummer generator is het mogelijk voor een aanvaller om de resettokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Uw gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess bestand niet werkt." +msgstr "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "Informatie over het configureren van uw server is hier te vinden documentatie." +msgstr "Informatie over het configureren van uw server is hier te vinden." #: templates/installation.php:44 msgid "Create an admin account" @@ -563,7 +564,7 @@ msgstr "Database tablespace" #: templates/installation.php:166 msgid "Database host" -msgstr "Database server" +msgstr "Databaseserver" #: templates/installation.php:172 msgid "Finish setup" @@ -586,15 +587,15 @@ msgstr "Automatische aanmelding geweigerd!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!" +msgstr "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." +msgstr "Wijzig je wachtwoord zodat je account weer beveiligd is." #: templates/login.php:34 msgid "Lost your password?" -msgstr "Uw wachtwoord vergeten?" +msgstr "Wachtwoord vergeten?" #: templates/login.php:39 msgid "remember" @@ -613,7 +614,7 @@ msgstr "Alternatieve inlogs" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "Hallo daar,

    %s deelde »%s« met u.
    Bekijk!

    Veel plezier!" +msgstr "Hallo daar,

    %s deelde »%s« met jou.
    Bekijk!

    Veel plezier!" #: templates/part.pagenavi.php:3 msgid "prev" @@ -626,4 +627,4 @@ msgstr "volgende" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Updaten ownCloud naar versie %s, dit kan even duren." +msgstr "Updaten ownCloud naar versie %s, dit kan even duren..." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 4f159c351cb..63ab584db3c 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index be5d27f0aa6..32e9b827661 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 20:00+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,30 +46,30 @@ msgstr "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevo #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Privésleutel succesvol bijgewerkt." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel bijwerking in uw persoonlijke instellingen om bij uw bestanden te komen." #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "PHP module OpenSSL is niet geïnstalleerd." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd." #: js/settings-admin.js:11 msgid "Saving..." @@ -96,11 +96,11 @@ msgstr "Versleuteling" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Wachtwoord herstelsleulel" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -112,15 +112,15 @@ msgstr "Gedeactiveerd" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Wijzig wachtwoord herstelsleutel:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Oude wachtwoord herstelsleutel" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nieuwe wachtwoord herstelsleutel" #: templates/settings-admin.php:53 msgid "Change Password" @@ -128,11 +128,11 @@ msgstr "Wijzigen wachtwoord" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord." #: templates/settings-personal.php:16 msgid "" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 17565890e52..22b31b7cb68 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index f411d781796..3030a7ff093 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 82d4cfce0bf..5ca2b42dbdc 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 87dfd06a141..63a62f4fc18 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 38e0626eefa..1d99995b01c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 5628970efd5..ab687b7d61d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 89f00163e35..6f2f75d30a3 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9979e80ac8d..d01efdeb832 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index ccdeb80b13b..cda028d5e38 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index fbfa343392a..372ed6d6c18 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 629e4b310d6..6d56f2fd622 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 8d5fa389995..7c40ad0267f 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index a69e68ea68a..916a72b757f 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index c485d1c034c..ebfd177d97b 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index b178a3c9035..4b2117cfc89 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 554b3220333..8af162e48ab 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 2861541d8e2..60201730b47 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 321a17e6a39..f1a7e52a4a4 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 31303dae2fe..2fb04aa5672 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index ffa9b549520..a5c02474d03 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 8e86e2d766a..78869cc489a 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index a038cbbe3e8..0885215d87f 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index b6e8ca4790a..0fd55c50939 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b06f066c55d..b5f3a722169 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: adbrand \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 20f5c5af2c9..b990d3c0a44 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index e40db9de7cb..dfcc243b6a1 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index c381a701808..08717d2bdff 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 3eb6c56f6f0..cc92491605f 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 0aad72d4336..082c0cc5bf2 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 9e430a342f8..0ff7668ea88 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index ed3fb1a7c33..94b3ebe752c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 4b51d108806..0ac745ad1d1 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 770d62e00cb..8dcc59e4ab9 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 16:30+0000\n" +"Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,13 +64,13 @@ msgstr "Sua chave privada não é válida! Talvez sua senha tenha sido mudada. V #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "O módulo PHP OpenSSL não está instalado." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -97,11 +97,11 @@ msgstr "Criptografia" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Senha da chave de recuperação" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -113,15 +113,15 @@ msgstr "Desabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Mudar a senha da chave de recuperação:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Senha antiga da chave de recuperação" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nova senha da chave de recuperação" #: templates/settings-admin.php:53 msgid "Change Password" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index c4809cb5b7f..cd1675f0031 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index d37a4a6651b..2efb9557a97 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index ce7e12c3602..2edfad3f0dc 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index df5970c1502..b4a3db18b80 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index d8349aba6bd..414a167813a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index e1229186c22..89992c98c99 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 545feca668e..b8860022ff1 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 6c5efd05d90..4fa324ebddb 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index edc45652013..44332f4b485 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 9001665d276..17f46670277 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 184b61b4e54..596e24663d7 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 20641e561f9..d6de5ad4d99 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 1f8f55744a8..58ef49215bc 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 41d390e606c..9044a8477d5 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index df65634c5e3..cf70fffebd1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# dimaursu16 , 2013 # ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,11 +22,11 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s Partajat »%s« cu tine de" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipul de categorie nu este prevazut" +msgstr "Tipul de categorie nu a fost specificat." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -204,7 +205,7 @@ msgstr "Anulare" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Eroare la încărcarea șablonului selectorului de fișiere" #: js/oc-dialogs.js:164 msgid "Yes" @@ -408,11 +409,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Fișierele tale sunt criptate. Dacă nu ai activat o cheie de recuperare, nu va mai exista nici o metodă prin care să îți recuperezi datele după resetarea parole. Dacă nu ești sigur în privința la ce ai de făcut, contactează un administrator înainte să continuii. Chiar vrei să continui?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Da, eu chiar doresc să îmi resetez parola acum" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -572,7 +573,7 @@ msgstr "Finalizează instalarea" #: templates/layout.user.php:40 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." #: templates/layout.user.php:67 msgid "Log out" @@ -613,7 +614,7 @@ msgstr "Conectări alternative" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Salutare,

    Vă aduc la cunoștință că %s a partajat %s cu tine.
    Accesează-l!

    Numai bine!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e8c8874e4b5..da1208a7e0e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# dimaursu16 , 2013 # ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -218,7 +219,7 @@ msgstr "{count} fisiere" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud" #: lib/app.php:73 msgid "Unable to rename file" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 0be1e988672..ed306efb07f 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 6f8a7e12118..51f776e22f2 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 782a629110d..634a5214ee9 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 565b817447f..de27c52e960 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 5224d55239a..2e425be1a89 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 4a60c0b6336..efa83ef2e69 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 4ae1f56f188..85820493c4d 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 17aaa2f259f..ff958e37045 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index ea6ef3c81ef..577f1c2213e 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 7c4b879fb12..7e9d5b98c8d 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 0193ae76fc4..c5626e33fcb 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 217171f7464..f9e070170a2 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 90e7012ac28..2ea3ed59461 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 57b3c49fedf..aa89e80f4a2 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index fe94441ea6d..d90c370aac3 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index f6bea0bf49f..da362147611 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index e5e1c4debf8..c8a65d793df 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 9cca570f4cc..c692d99227a 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index c5d24768991..ffdf208d5b3 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 79af95303fe..1ee104b8966 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index ad33a105cd5..34cfc0f75db 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 1a142bca4d2..0fd859b2036 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4852ecbe624..79e8f21840f 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 700cad7fb0e..031de089cfc 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 85fdd6f7f1e..1e74ef99333 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index d5206a34a00..0292e541077 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 44c66f68c58..3a8a680f289 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index d9c47d97a59..10e0f7ec21a 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index a45c24e0953..3b296582a89 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 318c50196c5..20c80449a9c 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 8b059c1333c..3bde3a9618a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index bc5991a1add..5c3ee02506c 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index de2a0294bcc..1a077ab4058 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 1c87f514b94..ddf9328eb3f 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 302ea26ae74..58a0639be39 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 3ea5b6777d3..8ce3264d144 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 25e23072fe6..a25daf32280 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 27b0d6c7fa6..fb976fa8eda 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index f06cfbbbc95..c859d4089bb 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 4d04c5bb974..0bb091ddfe1 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 0481da7d481..97bd48d0f4a 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 9bfd573484e..0f78a0428ca 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index f3f8e545176..9c51d0d918a 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 0c8eafde47f..bdce0babf2c 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 668a512c56b..2ddb2f8fb2d 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 5e370608248..3e9e25c799f 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index b3886035292..6f7fe3054fa 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index caa2976ee57..27b206e3b30 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 0c384f71e09..4fc8bfe2210 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index fcecae91448..7b6b712ad79 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 954030cd802..efab4ba7df8 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 075d05d2d7f..94ce49629ec 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 48963a75110..0edacd55f88 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8fd5aec3de3..8f6660299ba 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index ac05de4c3f0..7f2cbe42947 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 38693d1adba..e1dfef82c02 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index b52b1baeb71..d4d6757e284 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index b2206da3d6d..f10e3f4586c 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 535ddc3dd66..9563c8558ca 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 1e2d5fe86ef..fb70bae00ab 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index bcc928c2c30..a03d4492b05 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 2c5b1b9e7dc..eb44e4ddb96 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 6c33ba62363..e3ab3a8b0fa 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 6f25d179857..8293e77ee14 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index d526da7627e..bbbe8d804af 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 7c091c67c50..c06663ba391 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 6b00aaece8f..507f7fe2be2 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 025f255a746..6a21f615f47 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index e4c00be5ec7..2ec1cd88767 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 1e9ba35a742..de4b95d8dfc 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 70b3598aac5..fcf558d7b33 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index aa0f0c19236..91c73433118 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index a5271906bf1..fa992fcda39 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 63969f8694e..e9dbed5ce59 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index e44973f27d1..f3723f122f2 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 3d903472aef..0e962dc0c4f 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 5f9897e2ee0..20cebcc8404 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 0e4b234b4ff..ca0b7c1279a 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 02cb7e9d398..e9399d377c9 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 10b324dcf96..e23bc5a06a2 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 2507e04068b..183a3b5af12 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 6eee7eeb307..b0d30e54b9b 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 65df48533a4..3645b758858 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e1247808073..5795cb7c3d3 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index bd605665486..d0440871c34 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index dec013a2485..0e29168897c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 302f0bd9e7a..db3121dbd31 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 4cb6860da97..7007062249f 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index fa28f5aeb12..12b381fd721 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d2902194c19..31bfae35d98 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 72eac6329fa..13326efe046 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 875e44c6f08..7b9eb60885a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cc28d67e093..177a75f01e1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index bfc6d94e99f..9479b50b68c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 680ab5ba560..e6d1550b779 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 6a54f796817..3a3393804f6 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 24f1c8f9cf0..61815d1e936 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4d7b2508f63..4341cd5cf42 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index eb793fed135..cf172ba893e 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 17c6a312c72..39875c6c052 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 192ab8e5256..9ffcadec3d6 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 11509256938..0ab25361c6a 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 1c87aa8d1df..93493763a77 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 67dae3dd3be..4e66cbc4cfd 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 593bc845903..cc38053168b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index f559a9f3190..418f0a3bcd7 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 70e44891594..e2294c4feda 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 1b72a8e9082..188c11017a2 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d3903244988..f21d2dd4370 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index a971149508b..6a3b63dc046 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index a92a77a1bc1..7ba36267212 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 1a910d347c4..6089b3606d8 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 80172dd6855..a73cbb01acd 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 70bc9848c03..bd5ffff3a22 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 046a06a890b..28bc0bfd755 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 027d6520867..0684a53b3fb 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 6adecb1bf45..2aceb7019ec 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 093d536c3d5..d8b3c96b2b7 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index dd86ed6f8ee..a6fb13c8f0c 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 42a33ff0cdc..4dea6f8b180 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 42c687ed7bb..008c0f85f18 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 54f0071efde..1b5e6a3f234 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 5aa6f84e514..6232d2ee417 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 7cf1ded5438..50805230f8d 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index c0483cfd96c..ea816a426dc 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 27779d8efe6..370bbb936f3 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index c19785ccaae..b70c1e42374 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 35e74fe68b4..6cbc956d8cb 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index f230226b89e..18bde9e30a2 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index e53d5657d6e..a15724fbb66 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 0e4677d4618..1d699bc38a6 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 591e0dd75b7..6d887cd7d19 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index c7e425b32bb..8da1c6a159f 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index cf382de0ae3..ab937a595ee 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index c1489cc0f77..9087c7d8efc 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index d0701f564f1..e7b6e40ae3b 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 97c1d9d86a4..921957dacd5 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index c9b89ee8f7d..89cefe5b3b9 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 4b4ed3450fe..6f3be6d060d 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 8765785da54..665ca3aff96 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 552a8da97a3..d41ff5365af 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 74c73b303db..cabc3fa2cf7 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 757b0877a91..7ea290bef6e 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 6ce7dd1b2a0..27e3bb2f033 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index e05edde420a..5ddada9bda5 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 467db34a1c9..03a068568de 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index ed601194eab..5f575f56efd 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index c5e433c850e..6ec7f7cff76 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index f52e13379c5..4c6b07207df 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index a67b042b56d..7b713baa214 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f83c10096cc..1c792153cd3 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index ca9d6ddec35..94375cf1b8a 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 40d12631865..111e094460e 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index ac92bbc4865..74bc91c661e 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 32757d6d2e6..e8e6179f197 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index ca4b98e326c..976de08fc87 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 59cfdd51f87..315a0ac33ab 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 4b3640fae1b..c3282eca957 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index fd05551a838..8b9823ccea1 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 401b5f3f897..a180f2b4568 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index e9bb69f2c0e..d8f8f0bcc2b 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index ef4d03946e1..9a5d074e4d7 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index bcb60fbc82a..5e3b13ad018 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index dd728d3549b..787dfe4975d 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 4e53bbf20ab..055359846a7 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 08f9459a9cc..c2abc1a16f7 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# chenanyeh , 2013 # pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -412,7 +413,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "對,我現在想要重設我的密碼。" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 6f88b5b340a..4896947e1dd 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:03+0200\n" -"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:14+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 1353cc18162..1aca2dcbc34 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 232bdb7e9b5..6c75be8ce99 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 23694f805ce..86ccf90cda6 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index b1f0efb11ac..246177c3609 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-26 00:02+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 123bf7a560e..f1377e02810 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:05+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 7c320b3a199..9932a5abb00 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"PO-Revision-Date: 2013-06-25 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" -- GitLab From 794c189650d8eb2068da3a5df6ccd22966ee7f38 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 26 Jun 2013 09:19:19 +0200 Subject: [PATCH 057/215] session life time is now configurable and set to the same value --- config/config.sample.php | 3 +++ lib/base.php | 19 ++++++++++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 72834009201..9254365e3e2 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -145,6 +145,9 @@ $CONFIG = array( /* Lifetime of the remember login cookie, default is 15 days */ "remember_login_cookie_lifetime" => 60*60*24*15, +/* Life time of a session after inactivity */ +"session_life_time" => 60 * 60 * 12, + /* Custom CSP policy, changing this will overwrite the standard policy */ "custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *", diff --git a/lib/base.php b/lib/base.php index fd4870974fe..7097a376d6e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -311,16 +311,17 @@ class OC { exit(); } + $sessionLifeTime = self::getSessionLifeTime(); // regenerate session id periodically to avoid session fixation if (!self::$session->exists('SID_CREATED')) { self::$session->set('SID_CREATED', time()); - } else if (time() - self::$session->get('SID_CREATED') > 60*60*12) { + } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime) { session_regenerate_id(true); self::$session->set('SID_CREATED', time()); } // session timeout - if (self::$session->exists('LAST_ACTIVITY') && (time() - self::$session->get('LAST_ACTIVITY') > 60*60*24)) { + if (self::$session->exists('LAST_ACTIVITY') && (time() - self::$session->get('LAST_ACTIVITY') > $sessionLifeTime)) { if (isset($_COOKIE[session_name()])) { setcookie(session_name(), '', time() - 42000, $cookie_path); } @@ -332,6 +333,13 @@ class OC { self::$session->set('LAST_ACTIVITY', time()); } + /** + * @return int + */ + private static function getSessionLifeTime() { + return OC_Config::getValue('session_life_time', 60 * 60 * 12); + } + public static function getRouter() { if (!isset(OC::$router)) { OC::$router = new OC_Router(); @@ -393,9 +401,6 @@ class OC { @ini_set('post_max_size', '10G'); @ini_set('file_uploads', '50'); - //try to set the session lifetime to 60min - @ini_set('gc_maxlifetime', '3600'); - //copy http auth headers for apache+php-fcgid work around if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) { $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION']; @@ -455,6 +460,10 @@ class OC { exit; } + //try to set the session lifetime + $sessionLifeTime = self::getSessionLifeTime(); + @ini_set('gc_maxlifetime', (string)$sessionLifeTime); + // User and Groups if (!OC_Config::getValue("installed", false)) { self::$session->set('user_id',''); -- GitLab From e6c1db7a3f6d7ec35a1d55e5575e3e09d24bbbf8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 26 Jun 2013 11:23:21 +0200 Subject: [PATCH 058/215] move javascript variables 'oc_current_user' and 'oc_requesttoken' to js.js - fixes #3853 --- core/js/config.php | 2 -- core/js/js.js | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/core/js/config.php b/core/js/config.php index 53a8fb96388..dd46f7889d1 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -26,8 +26,6 @@ $array = array( "oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false', "oc_webroot" => "\"".OC::$WEBROOT."\"", "oc_appswebroots" => str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution - "oc_current_user" => "document.getElementsByTagName('head')[0].getAttribute('data-user')", - "oc_requesttoken" => "document.getElementsByTagName('head')[0].getAttribute('data-requesttoken')", "datepickerFormatDate" => json_encode($l->l('jsdate', 'jsdate')), "dayNames" => json_encode( array( diff --git a/core/js/js.js b/core/js/js.js index 3cb4d3dd151..08b429a555b 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -7,7 +7,10 @@ */ var oc_debug; var oc_webroot; -var oc_requesttoken; + +var oc_current_user = document.getElementsByTagName('head')[0].getAttribute('data-user'); +var oc_requesttoken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken'); + if (typeof oc_webroot === "undefined") { oc_webroot = location.pathname.substr(0, location.pathname.lastIndexOf('/')); } -- GitLab From bc61a9c09743eda0ffc18542d6bda2ed34d8553a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 26 Jun 2013 15:33:35 +0200 Subject: [PATCH 059/215] enable testing individual tests --- autotest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autotest.sh b/autotest.sh index 4562b3ed08a..59f0240d99b 100755 --- a/autotest.sh +++ b/autotest.sh @@ -132,9 +132,9 @@ EOF php -f enable_all.php if [ "$1" == "sqlite" ] ; then # coverage only with sqlite - causes segfault on ci.tmit.eu - reason unknown - phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 $2 $3 else - phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml $2 $3 fi } @@ -149,7 +149,7 @@ if [ -z "$1" ] # we will add oci as soon as it's stable #execute_tests 'oci' else - execute_tests $1 + execute_tests $1 $2 $3 fi # -- GitLab From 5a20c8b66fdf7e33de5874920e82b5caef449bea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 26 Jun 2013 15:51:22 +0200 Subject: [PATCH 060/215] add openssl_error_string() output to the owncloud.log --- apps/files_encryption/lib/crypt.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 927064012b6..6543a0de5f3 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -57,10 +57,11 @@ class Crypt { if ($res === false) { \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); + \OCP\Util::writeLog('Encryption library', openssl_error_string(), \OCP\Util::ERROR); } elseif (openssl_pkey_export($res, $privateKey)) { // Get public key - $publicKey = openssl_pkey_get_details($res); - $publicKey = $publicKey['key']; + $keyDetails = openssl_pkey_get_details($res); + $publicKey = $keyDetails['key']; $return = array( 'publicKey' => $publicKey, @@ -68,6 +69,7 @@ class Crypt { ); } else { \OCP\Util::writeLog('Encryption library', 'couldn\'t export users private key, please check your servers openSSL configuration.' . \OCP\User::getUser(), \OCP\Util::ERROR); + \OCP\Util::writeLog('Encryption library', openssl_error_string(), \OCP\Util::ERROR); } return $return; @@ -206,13 +208,10 @@ class Crypt { public static function encrypt($plainContent, $iv, $passphrase = '') { if ($encryptedContent = openssl_encrypt($plainContent, 'AES-128-CFB', $passphrase, false, $iv)) { - return $encryptedContent; - } else { - \OCP\Util::writeLog('Encryption library', 'Encryption (symmetric) of content failed', \OCP\Util::ERROR); - + \OCP\Util::writeLog('Encryption library', openssl_error_string(), \OCP\Util::ERROR); return false; } -- GitLab From bf49edde6bbd32fe847b8d56e8fb99c2587d5b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 26 Jun 2013 19:57:28 +0200 Subject: [PATCH 061/215] check item id is set --- lib/public/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/share.php b/lib/public/share.php index 122ab3fa030..d1000e7bb9f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -978,7 +978,7 @@ class Share { // Check if the same owner shared with the user twice // through a group and user share - this is allowed $id = $targets[$row[$column]]; - if ($items[$id]['uid_owner'] == $row['uid_owner']) { + if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { // Switch to group share type to ensure resharing conditions aren't bypassed if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; -- GitLab From 5d51118cb2648b37cfcb938e74756588025046cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 26 Jun 2013 20:03:24 +0200 Subject: [PATCH 062/215] fix type of numeric columns --- lib/public/share.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lib/public/share.php b/lib/public/share.php index d1000e7bb9f..a98cfda2089 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -963,6 +963,30 @@ class Share { $switchedItems = array(); $mounts = array(); while ($row = $result->fetchRow()) { + if (isset($row['id'])) { + $row['id']=(int)$row['id']; + } + if (isset($row['share_type'])) { + $row['share_type']=(int)$row['share_type']; + } + if (isset($row['parent'])) { + $row['parent']=(int)$row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent']=(int)$row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source']=(int)$row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions']=(int)$row['permissions']; + } + if (isset($row['storage'])) { + $row['storage']=(int)$row['storage']; + } + if (isset($row['stime'])) { + $row['stime']=(int)$row['stime']; + } // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; -- GitLab From da0caadf4ecbf101bf8ea40007357baf98c8437b Mon Sep 17 00:00:00 2001 From: Roman Geber Date: Wed, 26 Jun 2013 22:51:38 +0200 Subject: [PATCH 063/215] Added file-upload to GIT repo Optimized CSS identifiers --- apps/files/js/file-upload.js | 343 ++++++++++++++++++++++++++++++ apps/files_sharing/css/public.css | 16 +- 2 files changed, 351 insertions(+), 8 deletions(-) create mode 100644 apps/files/js/file-upload.js diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js new file mode 100644 index 00000000000..942a07dfccc --- /dev/null +++ b/apps/files/js/file-upload.js @@ -0,0 +1,343 @@ +$(document).ready(function() { + + file_upload_param = { + dropZone: $('#content'), // restrict dropZone to content div + //singleFileUploads is on by default, so the data.files array will always have length 1 + add: function(e, data) { + + if(data.files[0].type === '' && data.files[0].size == 4096) + { + data.textStatus = 'dirorzero'; + data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return true; //don't upload this file but go on with next in queue + } + + var totalSize=0; + $.each(data.originalFiles, function(i,file){ + totalSize+=file.size; + }); + + if(totalSize>$('#max_upload').val()){ + data.textStatus = 'notenoughspace'; + data.errorThrown = t('files','Not enough space available'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return false; //don't upload anything + } + + // start the actual file upload + var jqXHR = data.submit(); + + // remember jqXHR to show warning to user when he navigates away but an upload is still in progress + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + if(typeof uploadingFiles[dirName] === 'undefined') { + uploadingFiles[dirName] = {}; + } + uploadingFiles[dirName][data.files[0].name] = jqXHR; + } else { + uploadingFiles[data.files[0].name] = jqXHR; + } + + //show cancel button + if($('html.lte9').length === 0 && data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').show(); + } + }, + /** + * called after the first add, does NOT have the data param + * @param e + */ + start: function(e) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + }, + fail: function(e, data) { + if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { + if (data.textStatus === 'abort') { + $('#notification').text(t('files', 'Upload cancelled.')); + } else { + // HTTP connection problem + $('#notification').text(data.errorThrown); + } + $('#notification').fadeIn(); + //hide notification after 5 sec + setTimeout(function() { + $('#notification').fadeOut(); + }, 5000); + } + delete uploadingFiles[data.files[0].name]; + }, + progress: function(e, data) { + // TODO: show nice progress bar in file row + }, + progressall: function(e, data) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + var progress = (data.loaded/data.total)*100; + $('#uploadprogressbar').progressbar('value',progress); + }, + /** + * called for every successful upload + * @param e + * @param data + */ + done:function(e, data) { + // handle different responses (json or body from iframe for ie) + var response; + if (typeof data.result === 'string') { + response = data.result; + } else { + //fetch response from iframe + response = data.result[0].body.innerText; + } + var result=$.parseJSON(response); + + if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + var file = result[0]; + } else { + data.textStatus = 'servererror'; + data.errorThrown = t('files', result.data.message); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } + + var filename = result[0].originalname; + + // delete jqXHR reference + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + delete uploadingFiles[dirName][filename]; + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; + } + } else { + delete uploadingFiles[filename]; + } + + }, + /** + * called after last upload + * @param e + * @param data + */ + stop: function(e, data) { + if(data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').hide(); + } + + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + + $('#uploadprogressbar').progressbar('value',100); + $('#uploadprogressbar').fadeOut(); + } + } + var file_upload_handler = function() { + $('#file_upload_start').fileupload(file_upload_param); + }; + + + + if ( document.getElementById('data-upload-form') ) { + $(file_upload_handler); + } + $.assocArraySize = function(obj) { + // http://stackoverflow.com/a/6700/11236 + var size = 0, key; + for (key in obj) { + if (obj.hasOwnProperty(key)) size++; + } + return size; + }; + + // warn user not to leave the page while upload is in progress + $(window).bind('beforeunload', function(e) { + if ($.assocArraySize(uploadingFiles) > 0) + return t('files','File upload is in progress. Leaving the page now will cancel the upload.'); + }); + + //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) + if(navigator.userAgent.search(/konqueror/i)==-1){ + $('#file_upload_start').attr('multiple','multiple') + } + + //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder + var crumb=$('div.crumb').first(); + while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){ + crumb.children('a').text('...'); + crumb=crumb.next('div.crumb'); + } + //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent + var crumb=$('div.crumb').first(); + var next=crumb.next('div.crumb'); + while($('div.controls').height()>40 && next.next('div.crumb').length>0){ + crumb.remove(); + crumb=next; + next=crumb.next('div.crumb'); + } + //still not enough, start shorting down the current folder name + var crumb=$('div.crumb>a').last(); + while($('div.controls').height()>40 && crumb.text().length>6){ + var text=crumb.text() + text=text.substr(0,text.length-6)+'...'; + crumb.text(text); + } + + $(document).click(function(){ + $('#new>ul').hide(); + $('#new').removeClass('active'); + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('form').remove(); + $(element).append('

    '+$(element).data('text')+'

    '); + } + }); + }); + $('#new li').click(function(){ + if($(this).children('p').length==0){ + return; + } + + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('form').remove(); + $(element).append('

    '+$(element).data('text')+'

    '); + } + }); + + var type=$(this).data('type'); + var text=$(this).children('p').text(); + $(this).data('text',text); + $(this).children('p').remove(); + var form=$('
    '); + var input=$(''); + form.append(input); + $(this).append(form); + input.focus(); + form.submit(function(event){ + event.stopPropagation(); + event.preventDefault(); + var newname=input.val(); + if(type == 'web' && newname.length == 0) { + OC.Notification.show(t('files', 'URL cannot be empty.')); + return false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { + OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by ownCloud')); + return false; + } + if (FileList.lastAction) { + FileList.lastAction(); + } + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); + var hidden = true; + } else { + var hidden = false; + } + switch(type){ + case 'file': + $.post( + OC.filePath('files','ajax','newfile.php'), + {dir:$('#dir').val(),filename:name}, + function(result){ + if (result.status == 'success') { + var date=new Date(); + FileList.addFile(name,0,date,false,hidden); + var tr=$('tr').filterAttr('data-file',name); + tr.attr('data-mime',result.data.mime); + tr.attr('data-id', result.data.id); + getMimeIcon(result.data.mime,function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + } + ); + break; + case 'folder': + $.post( + OC.filePath('files','ajax','newfolder.php'), + {dir:$('#dir').val(),foldername:name}, + function(result){ + if (result.status == 'success') { + var date=new Date(); + FileList.addDir(name,0,date,hidden); + var tr=$('tr').filterAttr('data-file',name); + tr.attr('data-id', result.data.id); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + } + ); + break; + case 'web': + if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ + name='http://'+name; + } + var localName=name; + if(localName.substr(localName.length-1,1)=='/'){//strip / + localName=localName.substr(0,localName.length-1) + } + if(localName.indexOf('/')){//use last part of url + localName=localName.split('/').pop(); + } else { //or the domain + localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); + } + localName = getUniqueName(localName); + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + } else { + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + } + + var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); + eventSource.listen('progress',function(progress){ + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + } else { + $('#uploadprogressbar').progressbar('value',progress); + } + }); + eventSource.listen('success',function(data){ + var mime=data.mime; + var size=data.size; + var id=data.id; + $('#uploadprogressbar').fadeOut(); + var date=new Date(); + FileList.addFile(localName,size,date,false,hidden); + var tr=$('tr').filterAttr('data-file',localName); + tr.data('mime',mime).data('id',id); + tr.attr('data-id', id); + getMimeIcon(mime,function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + }); + eventSource.listen('error',function(error){ + $('#uploadprogressbar').fadeOut(); + alert(error); + }); + break; + } + var li=form.parent(); + form.remove(); + li.append('

    '+li.data('text')+'

    '); + $('#new>a').click(); + }); + }); +}); diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 68549d14fe1..71133145c87 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -15,13 +15,13 @@ body { padding:.5em; } -#header #details { +#details { color:#fff; - float: left; + float: left; } -#header #public_upload, -#header #download { +#public_upload, +#download { font-weight:700; margin: 0 0.4em 0 2em; padding: 0 5px; @@ -30,12 +30,12 @@ body { } -#header #public_upload { +#public_upload { margin-left: 0.3em; } -#header #public_upload img, -#header #download img { +#public_upload img, +#download img { padding-left:.1em; padding-right:.3em; vertical-align:text-bottom; @@ -107,7 +107,7 @@ thead{ width: 100% !important; } -.header-right #download span { +#download span { position: relative; bottom: 3px; } -- GitLab From 29caae3491dc55c613c118683ac9e0490b73c1fb Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 27 Jun 2013 02:12:00 +0200 Subject: [PATCH 064/215] [tx-robot] updated from transifex --- apps/files/l10n/sl.php | 1 + apps/files_encryption/l10n/es.php | 18 ++++ apps/files_encryption/l10n/eu.php | 5 +- apps/files_encryption/l10n/fr.php | 17 ++-- core/l10n/es_AR.php | 54 ++++++------ core/l10n/sl.php | 6 ++ l10n/af_ZA/core.po | 70 ++++++++-------- l10n/af_ZA/lib.po | 4 +- l10n/ar/core.po | 70 ++++++++-------- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/core.po | 70 ++++++++-------- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 70 ++++++++-------- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 70 ++++++++-------- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 70 ++++++++-------- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 70 ++++++++-------- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 70 ++++++++-------- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 70 ++++++++-------- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 70 ++++++++-------- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 70 ++++++++-------- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 70 ++++++++-------- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 70 ++++++++-------- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 70 ++++++++-------- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 43 +++++----- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 124 ++++++++++++++-------------- l10n/es_AR/files.po | 6 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 76 ++++++++--------- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 70 ++++++++-------- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 70 ++++++++-------- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 13 +-- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 70 ++++++++-------- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 70 ++++++++-------- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 70 ++++++++-------- l10n/fr/files.po | 4 +- l10n/fr/files_encryption.po | 30 +++---- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 70 ++++++++-------- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 70 ++++++++-------- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 70 ++++++++-------- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hr/core.po | 70 ++++++++-------- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 70 ++++++++-------- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 70 ++++++++-------- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 70 ++++++++-------- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 70 ++++++++-------- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 70 ++++++++-------- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 70 ++++++++-------- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 70 ++++++++-------- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ko/core.po | 70 ++++++++-------- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 70 ++++++++-------- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 70 ++++++++-------- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 70 ++++++++-------- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 70 ++++++++-------- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 70 ++++++++-------- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 70 ++++++++-------- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 70 ++++++++-------- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 70 ++++++++-------- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 70 ++++++++-------- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 70 ++++++++-------- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 70 ++++++++-------- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 70 ++++++++-------- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 70 ++++++++-------- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 70 ++++++++-------- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 70 ++++++++-------- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 70 ++++++++-------- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 70 ++++++++-------- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 70 ++++++++-------- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 85 +++++++++---------- l10n/sl/files.po | 9 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 9 +- l10n/sl/settings.po | 11 +-- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 70 ++++++++-------- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 70 ++++++++-------- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 70 ++++++++-------- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 70 ++++++++-------- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 70 ++++++++-------- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 70 ++++++++-------- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 68 +++++++-------- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 70 ++++++++-------- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 70 ++++++++-------- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 70 ++++++++-------- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 70 ++++++++-------- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 70 ++++++++-------- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 70 ++++++++-------- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 70 ++++++++-------- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 70 ++++++++-------- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 70 ++++++++-------- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 70 ++++++++-------- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/sl.php | 1 + settings/l10n/es_AR.php | 70 ++++++++-------- settings/l10n/sl.php | 2 + 543 files changed, 3525 insertions(+), 3481 deletions(-) diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 6902d311ab7..ed6391a588e 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -46,6 +46,7 @@ "{count} folders" => "{count} map", "1 file" => "1 datoteka", "{count} files" => "{count} datotek", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud", "Unable to rename file" => "Ni mogoče preimenovati datoteke", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 74891279355..a88eccc0e41 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,12 +7,30 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros", +"PHP module OpenSSL is not installed." => "El módulo OpenSSL de PHP no está instalado.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada.", "Saving..." => "Guardando...", +"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", +"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", +"personal settings" => "opciones personales", "Encryption" => "Cifrado", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", +"Old Recovery key password" => "Contraseña de la antigua clave de recuperación", +"New Recovery key password" => "Contraseña de la nueva clave de recuperación", "Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", +"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.", +"Old log-in password" => "Contraseña de acceso antigua", +"Current log-in password" => "Contraseña de acceso actual", +"Update Private Key Password" => "Actualizar Contraseña de Clave Privada", "Enable password recovery:" => "Habilitar la recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña", "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 253953e5c52..5f6208bffd7 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,4 +1,7 @@ "Gordetzen...", -"Encryption" => "Enkriptazioa" +"Encryption" => "Enkriptazioa", +"Enabled" => "Gaitua", +"Disabled" => "Ez-gaitua", +"Change Password" => "Aldatu Pasahitza" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 94d27f5501e..52a970d68bf 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -1,20 +1,27 @@ "Clé de récupération activée avec succès", -"Could not enable recovery key. Please check your recovery key password!" => "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!", -"Recovery key successfully disabled" => "Clé de récupération désactivée avc succès", -"Could not disable recovery key. Please check your recovery key password!" => "Ne peut pas désactiver la clé de récupération. S'il vous plait vérifiez votre mot de passe de clé de récupération!", +"Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", +"Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", +"Could not disable recovery key. Please check your recovery key password!" => "Impossible de désactiver la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", "Password successfully changed." => "Mot de passe changé avec succès ", "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur. Vous pouvez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers", +"PHP module OpenSSL is not installed." => "Le module OpenSSL de PHP n'est pas installé.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", +"Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", +"Recovery key password" => "Mot de passe de la clef de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", +"Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", +"Old Recovery key password" => "Ancien mot de passe de la clef de récupération", +"New Recovery key password" => "Nouveau mot de passe de la clef de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", @@ -22,8 +29,8 @@ "Old log-in password" => "Ancien mot de passe de connexion", "Current log-in password" => "Actuel mot de passe de connexion", "Update Private Key Password" => "Mettre à jour le mot de passe de votre clé privée", -"Enable password recovery:" => "Activer la récupération du mot de passe:", +"Enable password recovery:" => "Activer la récupération du mot de passe :", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", -"File recovery settings updated" => "Mise à jour des paramètres de récupération de fichiers ", +"File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 77c3fb854b4..8bef5151163 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -7,7 +7,7 @@ "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", "No categories selected for deletion." => "No se seleccionaron categorías para borrar.", -"Error removing %s from favorites." => "Error al remover %s de favoritos. ", +"Error removing %s from favorites." => "Error al borrar %s de favoritos. ", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -32,7 +32,7 @@ "1 minute ago" => "hace 1 minuto", "{minutes} minutes ago" => "hace {minutes} minutos", "1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "{hours} horas atrás", +"{hours} hours ago" => "hace {hours} horas", "today" => "hoy", "yesterday" => "ayer", "{days} days ago" => "hace {days} días", @@ -47,51 +47,51 @@ "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"The object type is not specified." => "El tipo de objeto no esta especificado. ", +"The object type is not specified." => "El tipo de objeto no está especificado. ", "Error" => "Error", -"The app name is not specified." => "El nombre de la aplicación no esta especificado.", +"The app name is not specified." => "El nombre de la App no está especificado.", "The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", "Error while sharing" => "Error al compartir", -"Error while unsharing" => "Error en el procedimiento de ", +"Error while unsharing" => "Error en al dejar de compartir", "Error while changing permissions" => "Error al cambiar permisos", "Shared with you and the group {group} by {owner}" => "Compartido con vos y el grupo {group} por {owner}", "Shared with you by {owner}" => "Compartido con vos por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir con link", +"Share with link" => "Compartir con enlace", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", -"Email link to person" => "Enviar el link por e-mail.", -"Send" => "Enviar", +"Email link to person" => "Enviar el enlace por e-mail.", +"Send" => "Mandar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", -"Share via email:" => "compartido a través de e-mail:", +"Share via email:" => "Compartir a través de e-mail:", "No people found" => "No se encontraron usuarios", "Resharing is not allowed" => "No se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", -"can edit" => "puede editar", +"can edit" => "podés editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", "delete" => "borrar", "share" => "compartir", "Password protected" => "Protegido por contraseña", -"Error unsetting expiration date" => "Error al remover la fecha de caducidad", +"Error unsetting expiration date" => "Error al remover la fecha de vencimiento", "Error setting expiration date" => "Error al asignar fecha de vencimiento", -"Sending ..." => "Enviando...", -"Email sent" => "Email enviado", +"Sending ..." => "Mandando...", +"Email sent" => "e-mail mandado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", -"The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu correo electrónico.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador.", +"The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu e-mail.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador.", "Request failed!
    Did you make sure your email/username was right?" => "¡Error en el pedido!
    ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", -"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", +"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña.", "Username" => "Nombre de usuario", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?", -"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?", +"Yes, I really want to reset my password now" => "Sí, definitivamente quiero restablecer mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Tu contraseña fue restablecida", "To login page" => "A la página de inicio de sesión", @@ -99,44 +99,44 @@ "Reset password" => "Restablecer contraseña", "Personal" => "Personal", "Users" => "Usuarios", -"Apps" => "Aplicaciones", +"Apps" => "Apps", "Admin" => "Administración", "Help" => "Ayuda", -"Access forbidden" => "Acceso denegado", +"Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", -"web services under your control" => "servicios web controlados por vos", +"web services under your control" => "servicios web que controlás", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)", "Please update your PHP installation to use ownCloud securely." => "Actualizá tu instalación de PHP para usar ownCloud de manera segura.", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.", "For information how to properly configure your server, please see the documentation." => "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la documentación.", "Create an admin account" => "Crear una cuenta de administrador", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", -"will be used" => "se utilizarán", +"will be used" => "se usarán", "Database user" => "Usuario de la base de datos", "Database password" => "Contraseña de la base de datos", "Database name" => "Nombre de la base de datos", "Database tablespace" => "Espacio de tablas de la base de datos", -"Database host" => "Host de la base de datos", +"Database host" => "Huésped de la base de datos", "Finish setup" => "Completar la instalación", "%s is available. Get more information on how to update." => "%s está disponible. Obtené más información sobre cómo actualizar.", "Log out" => "Cerrar la sesión", "Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!", "If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!", -"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta.", +"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta.", "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", -"Log in" => "Entrar", +"Log in" => "Iniciar sesión", "Alternative Logins" => "Nombre alternativos de usuarios", "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hola,

    Simplemente te informo que %s compartió %s con vos.
    Miralo acá:

    ¡Chau!", "prev" => "anterior", "next" => "siguiente", -"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 3b539f7fe22..81440044adb 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,4 +1,5 @@ "%s je delil »%s« z vami", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ali ni kategorije za dodajanje?", "This category already exists: %s" => "Kategorija že obstaja: %s", @@ -42,6 +43,7 @@ "years ago" => "let nazaj", "Choose" => "Izbor", "Cancel" => "Prekliči", +"Error loading file picker template" => "Napaka pri nalaganju predloge za izbor dokumenta", "Yes" => "Da", "No" => "Ne", "Ok" => "V redu", @@ -88,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Zahteva je spodletela!
    Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", "Username" => "Uporabniško ime", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?", +"Yes, I really want to reset my password now" => "Da, potrjujem ponastavitev gesla", "Request reset" => "Zahtevaj ponovno nastavitev", "Your password was reset" => "Geslo je ponovno nastavljeno", "To login page" => "Na prijavno stran", @@ -100,6 +104,7 @@ "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", "web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", @@ -130,6 +135,7 @@ "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Pozdravljen/a,

    sporočam, da je %s delil »%s« s teboj.
    Poglej vsebine!

    Lep pozdrav!", "prev" => "nazaj", "next" => "naprej", "Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 41e885396d7..5db20885a18 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellings" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index d0aaba84772..f224d863f24 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index cafbf8b0d93..31bdca83b3d 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "لم يتم اختيار فئة للحذف" msgid "Error removing %s from favorites." msgstr "خطأ في حذف %s من المفضلة" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "الاحد" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "الأثنين" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "الثلاثاء" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "الاربعاء" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "الخميس" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "الجمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "السبت" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "كانون الثاني" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "شباط" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "آذار" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "نيسان" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "أيار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "حزيران" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "تموز" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آب" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "أيلول" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "تشرين الاول" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "تشرين الثاني" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كانون الاول" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "إعدادات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "اليوم" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f3cafe7a6e7..9b01c579b9e 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 6f517e7c90a..05b06fab6dd 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 3f47cdeda06..34e761cae76 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 1b87c576798..988d5ebebfa 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 5d21c869ed6..437b69629bd 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index f19133fabb0..bd2b457e792 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 12b60c39728..867f49d2b70 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index df6f19e4e53..ddca1e6ae99 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Няма избрани категории за изтриване" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неделя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Сряда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвъртък" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петък" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Събота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Януари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Юни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Юли" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Настройки" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "днес" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "последният месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "последната година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 00812512505..011fc25e13c 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 40ddac8dbdd..00d87b41f43 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index f024808d5a6..ddb538244d5 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 63b2b436ea8..2b08f0d6677 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index e195eb4ba19..192efb5851f 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index eb25bb66484..f29ac6635eb 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index e500fe54fd7..ad7c0357d02 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0a3a474d3e2..f2b3fc22318 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "মুছে ফেলার জন্য কনো ক্যাটে msgid "Error removing %s from favorites." msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "রবিবার" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "সোমবার" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "বুধবার" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "শুক্রবার" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "শনিবার" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "জানুয়ারি" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ফেব্রুয়ারি" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "মার্চ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "এপ্রিল" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "মে" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "জুন" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "জুলাই" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "অগাষ্ট" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "সেপ্টেম্বর" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "অক্টোবর" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "নভেম্বর" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "আজ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "গত মাস" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "গত বছর" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 81d1cf99871..07ee317ad85 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 25bef73f5e7..cfe1b9b844c 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0b17a43cbaf..d853a61f334 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index b7d203caa12..09707722e7a 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 78a9b05024a..803e8d9d963 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index bf61fd2004b..69260fef1d6 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index b934bec3990..128c7d3fcd4 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index a56fe6475db..46532b31658 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index bc87fa7673a..29f58f4aa81 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index baa1264b2f4..bb4f2b7d283 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 74b3246d057..20ccb5b258a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "No hi ha categories per eliminar." msgid "Error removing %s from favorites." msgstr "Error en eliminar %s dels preferits." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Diumenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Dilluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarts" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijous" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gener" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrer" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maig" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juny" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juliol" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuració" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "avui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ahir" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'any passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 3848fb765d1..3fd75c89a06 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 380d2ad0e62..254cc340b58 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 32b91213c24..ff1381a5e73 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index f4c82a2a13c..3b8a0cc2eea 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 21e1e2b42bd..2414446f6b5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f3d1dacbdb8..cc8ccc0c43d 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 095ed8b8723..82ea2ba8316 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f914ae46947..8eeec23519e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání." msgid "Error removing %s from favorites." msgstr "Chyba při odebírání %s z oblíbených." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Neděle" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondělí" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Úterý" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Středa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Čtvrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Pátek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Leden" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Únor" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Březen" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Duben" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Květen" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Červen" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Červenec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Srpen" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Září" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Říjen" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinec" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavení" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "před měsíci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8e82ebd7f83..fb5a03244ea 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index e3716085af2..c9b5668a947 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 7ca1084cbab..d9f7b34e1b8 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4c929a0feb4..68e2d992a24 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 9ce3a578284..9ee3bf82acc 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e20ff07ce6f..e176331e715 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9c2f882ee6f..fb5b30b2575 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2fdd1c36335..4c961404396 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Ni ddewiswyd categorïau i'w dileu." msgid "Error removing %s from favorites." msgstr "Gwall wrth dynnu %s o ffefrynnau." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sul" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Llun" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mawrth" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercher" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Iau" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Gwener" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sadwrn" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ionawr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Chwefror" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mawrth" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Ebrill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Mehefin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Gorffennaf" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Awst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Medi" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Hydref" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tachwedd" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Rhagfyr" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "heddiw" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ddoe" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "y llynedd" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 901b0210895..8906b9ea9ac 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 4d2a2eae5c0..76ff15a6841 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 0a57a9cde56..c58d72ff7bb 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 5788c4b356c..86db3791ede 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d36b3089295..f546eae2f49 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 8c3ebe31740..9ea9f8090a9 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 0cafa6fa3fe..75833170a82 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index ee143650862..d7334952045 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategorier valgt" msgid "Error removing %s from favorites." msgstr "Fejl ved fjernelse af %s fra favoritter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "sidste måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "sidste år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files.po b/l10n/da/files.po index 14ec9de6698..ee6c9080163 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 360b6a00758..704931beab4 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 63aa4bc1737..eafd16c7427 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index c0a227946da..3a22e6e795f 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 3e77cbaf0d0..d23d0442e7a 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index d95f5c114dc..5e8d92bee7c 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e6f5ed9d780..b32c7aed8bb 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 3329cb8d3ff..1f342949878 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index ee99969b612..35c67d411d4 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 36c2eaf3742..7c3e231b420 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 47a0b7c931b..882763d90bc 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 0febaa69c38..e90bd78c68b 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 8694bc30450..5e3dfd1d6df 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b193c6a20d7..3ec1822e0a5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 81d2d4aaa21..39c8ba7b09b 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b3b252cecb7..49668527613 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -66,135 +66,135 @@ msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d1dd4477eb4..b5047217be9 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 36c187ac1f2..4705bfd661c 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 10fc41ca5d1..d7c7aeb4841 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index af00f22b582..1498082f98c 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d150c9ea1f2..bd5e4d7211a 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 518f1aa7485..c58c3385354 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 393a83e49f5..2925095e774 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7522d7cf10c..081b5b96b20 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -68,135 +68,135 @@ msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφ msgid "Error removing %s from favorites." msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Κυριακή" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Δευτέρα" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Τρίτη" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Τετάρτη" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Πέμπτη" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Παρασκευή" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Σάββατο" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ιανουάριος" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Φεβρουάριος" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Μάρτιος" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Απρίλιος" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Μάϊος" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ιούνιος" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Ιούλιος" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Αύγουστος" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Σεπτέμβριος" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Οκτώβριος" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Νοέμβριος" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "σήμερα" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "χτες" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index b6072df48b8..a20ea258718 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index b06796c7f85..fb3093c73ce 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d6cfe458552..afcc88c4679 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index d15ee15a56b..ccc9acb85ef 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 6098e170aa9..4196cfc39b9 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f8360c568f8..10f6a92df0d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index d1fbba123f7..ef64fb25bcd 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 309bf275953..a61540a499b 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 7ceb81b1df6..73f08aaeaf2 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 38371de9a25..b781a694c4f 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Neniu kategorio elektiĝis por forigo." msgid "Error removing %s from favorites." msgstr "Eraro dum forigo de %s el favoratoj." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "dimanĉo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "lundo" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "mardo" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "merkredo" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ĵaŭdo" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vendredo" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januaro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februaro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marto" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilo" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Majo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Aŭgusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Agordo" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hodiaŭ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "lastamonate" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lastajare" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 55a57eb0438..f713dc9520a 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index b19e65069ec..499fe7a5ab0 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e55df6f34d8..f4c97b1fb39 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9889535bc5a..894fdd59e1b 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 80a9c4ce8c4..452fc983624 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d3fc64da1d9..2334a6d7046 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6b8a1a6a30c..bb60932db44 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3a028120c63..3c175bf08b1 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -67,135 +67,135 @@ msgstr "No hay categorías seleccionadas para borrar." msgid "Error removing %s from favorites." msgstr "Error eliminando %s de los favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hace meses" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files.po b/l10n/es/files.po index eaa87e4858e..8336716d102 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 7a064fb6f37..9508abeb49c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez , 2013 # gmoriello , 2013 # saskarip , 2013 # William Díaz , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 21:40+0000\n" -"Last-Translator: xhiena \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,17 +63,17 @@ msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "El módulo OpenSSL de PHP no está instalado." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -82,15 +83,15 @@ msgstr "Guardando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Puede desbloquear su clave privada en su" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "opciones personales" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -99,11 +100,11 @@ msgstr "Cifrado" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +116,15 @@ msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Contraseña de la antigua clave de recuperación" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Contraseña de la nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Change Password" @@ -131,29 +132,29 @@ msgstr "Cambiar contraseña" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -163,7 +164,7 @@ msgstr "Habilitar la recuperación de contraseña:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index b4100782eb4..3875ee70288 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index ef1b9977dce..26df699be7a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 8a72120f5d9..e05f305a345 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9cfbcf417e3..9b39ad5bc7b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index d4aef6810bd..c488eaa0892 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9b35e733847..479d7d74bee 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 8fbf7359904..6822bd513bd 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -60,137 +60,137 @@ msgstr "No se seleccionaron categorías para borrar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error al remover %s de favoritos. " +msgstr "Error al borrar %s de favoritos. " -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuración" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "años atrás" @@ -221,7 +221,7 @@ msgstr "Aceptar" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "El tipo de objeto no esta especificado. " +msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -233,7 +233,7 @@ msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la aplicación no esta especificado." +msgstr "El nombre de la App no está especificado." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -253,7 +253,7 @@ msgstr "Error al compartir" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error en el procedimiento de " +msgstr "Error en al dejar de compartir" #: js/share.js:143 msgid "Error while changing permissions" @@ -273,7 +273,7 @@ msgstr "Compartir con" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir con link" +msgstr "Compartir con enlace" #: js/share.js:167 msgid "Password protect" @@ -285,11 +285,11 @@ msgstr "Contraseña" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar el link por e-mail." +msgstr "Enviar el enlace por e-mail." #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "Mandar" #: js/share.js:178 msgid "Set expiration date" @@ -301,7 +301,7 @@ msgstr "Fecha de vencimiento" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido a través de e-mail:" +msgstr "Compartir a través de e-mail:" #: js/share.js:213 msgid "No people found" @@ -321,7 +321,7 @@ msgstr "Dejar de compartir" #: js/share.js:320 msgid "can edit" -msgstr "puede editar" +msgstr "podés editar" #: js/share.js:322 msgid "access control" @@ -349,7 +349,7 @@ msgstr "Protegido por contraseña" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al remover la fecha de caducidad" +msgstr "Error al remover la fecha de vencimiento" #: js/share.js:589 msgid "Error setting expiration date" @@ -357,11 +357,11 @@ msgstr "Error al asignar fecha de vencimiento" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "Mandando..." #: js/share.js:615 msgid "Email sent" -msgstr "Email enviado" +msgstr "e-mail mandado" #: js/update.js:14 msgid "" @@ -387,7 +387,7 @@ msgid "" "The link to reset your password has been sent to your email.
    If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "El enlace para restablecer la contraseña fue enviada a tu correo electrónico.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador." +msgstr "El enlace para restablecer la contraseña fue enviada a tu e-mail.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
    Did you make sure your email/username was right?" @@ -395,7 +395,7 @@ msgstr "¡Error en el pedido!
    ¿Estás seguro de que tu dirección de corre #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña" +msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -408,11 +408,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?" +msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Sí, definitivamente quiero resetear mi contraseña ahora" +msgstr "Sí, definitivamente quiero restablecer mi contraseña ahora" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -444,7 +444,7 @@ msgstr "Usuarios" #: strings.php:7 msgid "Apps" -msgstr "Aplicaciones" +msgstr "Apps" #: strings.php:8 msgid "Admin" @@ -456,7 +456,7 @@ msgstr "Ayuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "Acceso prohibido" #: templates/404.php:12 msgid "Cloud not found" @@ -475,7 +475,7 @@ msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo ac #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "servicios web controlados por vos" +msgstr "servicios web que controlás" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -502,13 +502,13 @@ msgstr "Actualizá tu instalación de PHP para usar ownCloud de manera segura." msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." +msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." +msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta." #: templates/installation.php:39 msgid "" @@ -543,7 +543,7 @@ msgstr "Configurar la base de datos" #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "se utilizarán" +msgstr "se usarán" #: templates/installation.php:137 msgid "Database user" @@ -563,7 +563,7 @@ msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:166 msgid "Database host" -msgstr "Host de la base de datos" +msgstr "Huésped de la base de datos" #: templates/installation.php:172 msgid "Finish setup" @@ -590,7 +590,7 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." +msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." #: templates/login.php:34 msgid "Lost your password?" @@ -602,7 +602,7 @@ msgstr "recordame" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "Iniciar sesión" #: templates/login.php:47 msgid "Alternative Logins" @@ -626,4 +626,4 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a la versión %s, puede domorar un rato." +msgstr "Actualizando ownCloud a la versión %s, puede demorar un rato." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fec836f5f22..a849873ab45 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 924acbadc41..eaaa23e5229 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 40f68783157..4e29e09f93d 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6448c511db4..4533c27b400 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index e953455fb68..76f8ff093e6 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index e3d1016a35a..fb9e9ec5e43 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Error al autenticar" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "El nombre mostrado fue cambiado" +msgstr "El nombre mostrado que usás fue cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -46,7 +46,7 @@ msgstr "No fue posible añadir el grupo" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No se puede habilitar la aplicación." +msgstr "No se pudo habilitar la App." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -54,15 +54,15 @@ msgstr "e-mail guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "el e-mail no es válido " +msgstr "El e-mail no es válido " #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No fue posible eliminar el grupo" +msgstr "No fue posible borrar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "No fue posible eliminar el usuario" +msgstr "No fue posible borrar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -70,29 +70,29 @@ msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Pedido no válido" +msgstr "Pedido inválido" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " +msgstr "Los administradores no se pueden quitar a si mismos del grupo administrador. " #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "No fue posible añadir el usuario al grupo %s" +msgstr "No fue posible agregar el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "No es posible eliminar al usuario del grupo %s" +msgstr "No es posible borrar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se pudo actualizar la aplicación." +msgstr "No se pudo actualizar la App." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "Actualizar a {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -116,7 +116,7 @@ msgstr "Actualizando...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error al actualizar" +msgstr "Error al actualizar App" #: js/apps.js:96 msgid "Updated" @@ -136,7 +136,7 @@ msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "Imposible remover usuario" +msgstr "Imposible borrar usuario" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -153,7 +153,7 @@ msgstr "Borrar" #: js/users.js:269 msgid "add group" -msgstr "Agregar grupo" +msgstr "agregar grupo" #: js/users.js:428 msgid "A valid username must be provided" @@ -201,13 +201,13 @@ msgstr "Por favor, comprobá nuevamente la guía de instalación%s of the available %s" -msgstr "Usaste %s de los %s disponibles" +msgstr "Usás %s de los %s disponibles" #: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" @@ -431,7 +431,7 @@ msgstr "Nombre a mostrar" #: templates/personal.php:74 msgid "Email" -msgstr "Correo Electrónico" +msgstr "e-mail" #: templates/personal.php:76 msgid "Your email address" @@ -439,7 +439,7 @@ msgstr "Tu dirección de e-mail" #: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" -msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" +msgstr "Escribí una dirección de e-mail para restablecer la contraseña" #: templates/personal.php:86 templates/personal.php:87 msgid "Language" @@ -455,11 +455,11 @@ msgstr "WebDAV" #: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" +msgstr "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "Nombre de " +msgstr "Nombre de Usuario" #: templates/users.php:30 msgid "Create" @@ -497,7 +497,7 @@ msgstr "Almacenamiento" #: templates/users.php:102 msgid "change display name" -msgstr "Cambiar el nombre que se muestra" +msgstr "Cambiar el nombre mostrado" #: templates/users.php:106 msgid "set new password" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 6c5085952d2..42feceeb67b 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index cf57d1175c9..6c08270baa7 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Kustutamiseks pole kategooriat valitud." msgid "Error removing %s from favorites." msgstr "Viga %s eemaldamisel lemmikutest." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pühapäev" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Esmaspäev" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Teisipäev" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Kolmapäev" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Neljapäev" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Reede" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laupäev" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Jaanuar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veebruar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Märts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juuni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juuli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktoober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Detsember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Seaded" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "täna" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eile" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index c07fd0d3169..c3b6f1ba02e 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index bb43b85a2f3..b0ad35f3b12 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0ea609f1c01..5ca9cbdde30 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 1d550e0201f..4103f63f2ab 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 84997870013..a5d1e8cdd86 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 6113a81c875..0937931cf13 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 633c23e05e1..252378f443c 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 4075125d91e..360feb9330e 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ez da ezabatzeko kategoriarik hautatu." msgid "Error removing %s from favorites." msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Igandea" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Astelehena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Asteartea" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Asteazkena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Osteguna" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Ostirala" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Larunbata" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Urtarrila" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Otsaila" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martxoa" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apirila" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maiatza" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ekaina" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Uztaila" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Abuztua" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Iraila" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Urria" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Azaroa" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Abendua" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "gaur" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "atzo" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hilabete" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "joan den urtean" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e56b4fdfcf4..3febc63ea4b 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 304cd86c002..b855eec29a2 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Gaitua" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Ez-gaitua" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Aldatu Pasahitza" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 2b0ef136fa7..f7dac2f7262 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 0d033e3d96e..d28abc7639c 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 8a909233408..b6e8cb6e249 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index f5ed84b74d7..3910c3caed9 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f1faa72a3fb..ca85f0617b1 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 56e299b9131..e6e7382d6e4 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1cc51050faa..8d9195be01b 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است msgid "Error removing %s from favorites." msgstr "خطای پاک کردن %s از علاقه مندی ها." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "یکشنبه" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دوشنبه" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سه شنبه" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چهارشنبه" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پنجشنبه" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شنبه" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ژانویه" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فبریه" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارس" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "آوریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "می" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ژوئن" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولای" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آگوست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "سپتامبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نوامبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسامبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "امروز" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "دیروز" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ماه قبل" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "سال قبل" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 3a5b7779bd4..621c79d1475 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index a8224ed9b2d..21cf84dbff8 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 9e3677fcdd7..b046c10a83d 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 54e6f844568..aac2a6e7a1a 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a9ac1b53c73..b48fee0a48c 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 9a6956a5514..89080126f20 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index c09193d7c95..713fd399852 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 509eb435e39..a6aa61f34f1 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Luokkia ei valittu poistettavaksi." msgid "Error removing %s from favorites." msgstr "Virhe poistaessa kohdetta %s suosikeista." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "sunnuntai" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maanantai" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "tiistai" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "keskiviikko" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "torstai" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "perjantai" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "lauantai" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "tammikuu" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "helmikuu" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maaliskuu" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "huhtikuu" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "toukokuu" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "kesäkuu" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "heinäkuu" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "elokuu" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "syyskuu" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "lokakuu" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "marraskuu" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "joulukuu" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Asetukset" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "tänään" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eilen" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viime kuussa" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viime vuonna" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b5f034992c5..66e663a4f39 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 14a8a6d025a..ee71e0b7b9a 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 4d175ceb535..f05df1e9f7b 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index b801dab5012..6530f623379 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 3bb2c74afca..0120a65d470 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2a3545238a2..58d8433e2af 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index af5ea17cd63..299c394b225 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 38f654610fc..a2c93dd4ca3 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -66,135 +66,135 @@ msgstr "Pas de catégorie sélectionnée pour la suppression." msgid "Error removing %s from favorites." msgstr "Erreur lors de la suppression de %s des favoris." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimanche" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lundi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mardi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercredi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jeudi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vendredi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samedi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janvier" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "février" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "avril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juillet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "août" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "décembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Paramètres" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "aujourd'hui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hier" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "le mois dernier" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'année dernière" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e383782a587..449ef186a76 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 8b042476584..512b7f10e68 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 12:22+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,16 +28,16 @@ msgstr "Clé de récupération activée avec succès" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!" +msgstr "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Clé de récupération désactivée avc succès" +msgstr "Clé de récupération désactivée avec succès" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Ne peut pas désactiver la clé de récupération. S'il vous plait vérifiez votre mot de passe de clé de récupération!" +msgstr "Impossible de désactiver la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -66,13 +66,13 @@ msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Le module OpenSSL de PHP n'est pas installé." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé." #: js/settings-admin.js:11 msgid "Saving..." @@ -99,11 +99,11 @@ msgstr "Chiffrement" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe)." #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Mot de passe de la clef de récupération" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +115,15 @@ msgstr "Désactiver" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Modifier le mot de passe de la clef de récupération :" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Ancien mot de passe de la clef de récupération" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nouveau mot de passe de la clef de récupération" #: templates/settings-admin.php:53 msgid "Change Password" @@ -157,7 +157,7 @@ msgstr "Mettre à jour le mot de passe de votre clé privée" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "Activer la récupération du mot de passe:" +msgstr "Activer la récupération du mot de passe :" #: templates/settings-personal.php:47 msgid "" @@ -167,7 +167,7 @@ msgstr "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "Mise à jour des paramètres de récupération de fichiers " +msgstr "Paramètres de récupération de fichiers mis à jour" #: templates/settings-personal.php:64 msgid "Could not update file recovery" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index bfb9c872a9b..c425552f2cf 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 06fd8fa8cb8..d05867275af 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 7d5f29bf0a0..272e625ddb4 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a5f08d463f6..67bb78cc0ca 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 08e7fed71fd..47dd91ddd4b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index c4b7ee0fee8..38cef14b2ea 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4ae5147bca8..29b7623755c 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Non se seleccionaron categorías para eliminación." msgid "Error removing %s from favorites." msgstr "Produciuse un erro ao eliminar %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mércores" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Xoves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "xaneiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febreiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "xuño" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "xullo" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Axustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoxe" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "onte" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mes" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 684d45ae22f..1f2e545aed8 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c03d12e2685..1f4976803d5 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 432220cf0a2..4a1ce255598 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 23c264433c8..afb40ecd577 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 750805bb5b0..cd71224bdfd 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c25f1a45148..39c66c1c09c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 5d626e7ef43..6b49d7644b1 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 96d097adf83..af1943fa8df 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "לא נבחרו קטגוריות למחיקה" msgid "Error removing %s from favorites." msgstr "שגיאה בהסרת %s מהמועדפים." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "יום ראשון" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "יום שני" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "יום שלישי" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "יום רביעי" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "יום חמישי" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "יום שישי" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "שבת" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ינואר" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "פברואר" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "מרץ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "אפריל" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "מאי" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "יוני" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "יולי" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "אוגוסט" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ספטמבר" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "אוקטובר" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "נובמבר" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "דצמבר" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "הגדרות" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "שניות" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "היום" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "אתמול" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "חודשים" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index 833ad6436c3..826742d7e51 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 7db359cc679..ee63494bcc8 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index e1a1fbc7809..5ee7399de82 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 3093babfb45..120eea30e35 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 5d16ab1f58e..a8fc8dbfd42 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index e9072e8a080..8c17f3c3195 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e287c5fe8f9..8298638ee4c 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 16cd4bf3461..b4f222f17ca 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "जनवरी" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "फरवरी" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "मार्च" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "अप्रैल" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "मई" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "जून" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "जुलाई" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "अगस्त" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "सितम्बर" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "अक्टूबर" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "नवंबर" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "दिसम्बर" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 118e99b7e50..6c912156a47 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index f8ac471b2ba..308868022e2 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index fcb4fb73049..9f59d45d6b3 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Niti jedna kategorija nije odabrana za brisanje." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "srijeda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Siječanj" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veljača" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Ožujak" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Travanj" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Svibanj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Lipanj" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Srpanj" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Kolovoz" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rujan" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Listopad" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Studeni" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinac" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Postavke" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danas" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "jučer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mjeseci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f2b442e6d78..2574788614f 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 65a5177cdba..7952b00e05f 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 7ca4969c3ba..8c9b155be94 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index fac04e71f06..3af9e1f1232 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 02db02f21fa..4528ac0305b 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c05a173698b..c439b9bde6d 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 19364072edd..2df06277c05 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ebc29ae86cb..0bd1775a0e2 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nincs törlésre jelölt kategória" msgid "Error removing %s from favorites." msgstr "Nem sikerült a kedvencekből törölni ezt: %s" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "vasárnap" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "hétfő" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "kedd" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "szerda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "csütörtök" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "péntek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "szombat" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "március" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "április" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "május" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "június" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "július" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augusztus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "szeptember" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Beállítások" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ma" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "tegnap" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "több hónapja" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tavaly" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ea61959f14b..e60b51bc5ac 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 26b1d2e455d..002cae68a76 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index bc1e33cad00..3e952ca8b78 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 160a54c12c1..998e396cdf7 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index be74cef5361..f580f34096f 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c31be35ab08..0dda0bb1faa 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 76b57d1474f..ad37f5cf77e 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 830ee08a234..75e0e76e6b6 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index b09b8cf248c..9a6213278b5 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 516a9ae1379..f660d2e85a9 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d78ba4b31e5..3a6821a5560 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index d38be332ec5..1864e34b418 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index b4c9764d4ca..0943c5053df 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dominica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercuridi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jovedi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabbato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januario" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februario" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martio" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurationes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 13c98472dc3..40ef0e36887 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index f04d0346a57..8f87d09748f 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 4b3ff1b6caf..22a4ec2dbf5 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index dbd84ee318f..a0d49bc7b5f 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 9d6bb20c703..a1f2ce2c334 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index fe1b763855c..c9856ed3c2a 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index eca8b4b8f6e..1aa675768a7 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 2636b71dfcd..995eae2691f 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tidak ada kategori terpilih untuk dihapus." msgid "Error removing %s from favorites." msgstr "Galat ketika menghapus %s dari favorit" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Minggu" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Senin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Kamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Maret" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setelan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hari ini" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "kemarin" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7879939ac5a..dbe6e8158df 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 749189c5713..35a5ede8922 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index be8fb9a574f..eec98f5b5ac 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index f4afa3dfdbc..071563e748a 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9e877f02f3c..cbd68a69290 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 40f8eedd3fb..852012e9a83 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a46f1e833ee..a053d59f283 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 330ad870c16..45f0527d041 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Enginn flokkur valinn til eyðingar." msgid "Error removing %s from favorites." msgstr "Villa við að fjarlægja %s úr eftirlæti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sunnudagur" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mánudagur" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Þriðjudagur" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miðvikudagur" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Fimmtudagur" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Föstudagur" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laugardagur" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janúar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrúar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maí" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Júní" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júlí" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ágúst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nóvember" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Stillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sek." -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "í dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "í gær" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "síðasta ári" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index 34340946f1a..9b17fb7ddf6 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 573c7054e9c..8211b5cb636 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index b5018ef31a5..5f8a56defc7 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1ab495a8a04..c5133e3f4d0 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 6ca4b051a2a..a597260cc78 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 92852949b2c..59bb25868e6 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 1d4fbf8f8d9..434621feebb 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 6a3e978763e..fda6115e7eb 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nessuna categoria selezionata per l'eliminazione." msgid "Error removing %s from favorites." msgstr "Errore durante la rimozione di %s dai preferiti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domenica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedì" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedì" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercoledì" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Giovedì" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdì" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gennaio" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febbraio" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprile" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maggio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Giugno" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Luglio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Settembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ottobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dicembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "oggi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mese scorso" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesi fa" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "anno scorso" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index fcdf9ed4491..4c08573739e 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index cf8defcbfff..f6058d695de 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 579178888ec..897eaaf0474 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index a3c37675feb..e2cd88ed283 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index ef76904aae0..38c5ab889c7 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 78802e5f8aa..0d372da2de3 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 7d3a36edcd4..9f5102f776d 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 486239368ec..3aa9f86baaf 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "削除するカテゴリが選択されていません。" msgid "Error removing %s from favorites." msgstr "お気に入りから %s の削除エラー" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "月" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "火" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "水" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "木" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "金" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "土" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "一月前" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "一年前" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 2a02df7abff..c8f9bd471ea 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 9641d4ea4c1..0f42f27db81 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 2ed082766ac..c302f6ac225 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 929e166861b..73c55e6687e 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 00e48278dd6..ff1dff50081 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 7a5ee41ff87..67458013c6d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index f273abf31cf..1b36729b825 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 7e0a6087cb1..aed0a9b3566 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 2c43aa9d884..230ac84ddf9 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index f71135a4048..ff870b72f4a 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "სარედაქტირებელი კატეგორი msgid "Error removing %s from favorites." msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "კვირა" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ორშაბათი" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "სამშაბათი" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "ოთხშაბათი" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ხუთშაბათი" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "პარასკევი" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "შაბათი" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "იანვარი" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "თებერვალი" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "მარტი" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "აპრილი" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "მაისი" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ივნისი" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ივლისი" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "აგვისტო" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "სექტემბერი" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ოქტომბერი" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ნოემბერი" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "დეკემბერი" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "დღეს" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 246c9919055..7f4cb798614 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 6b5d02a2118..f55ee1983a8 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index aee96750929..094b3063850 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index f7a8d12a954..4b6b2421e30 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a9416312adb..bcd4dd09a6c 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index db3f481b551..97f5afb0054 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 4326c97a246..2942562fbd3 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1a06f9ff89a..777644e2df4 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "삭제할 분류를 선택하지 않았습니다. " msgid "Error removing %s from favorites." msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "일요일" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "월요일" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "화요일" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "수요일" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "목요일" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "금요일" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "토요일" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1월" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2월" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3월" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4월" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5월" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6월" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7월" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8월" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9월" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10월" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11월" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12월" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "설정" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "초 전" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "오늘" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "어제" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "지난 달" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "개월 전" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "작년" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a74387a3f44..101547c6d36 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 0606fb0befd..db446f07e9b 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index b9ed8f63e2b..f2cd849e917 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 2ae1c30a58a..89d32881abf 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 8702193d425..b3159431ec0 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 640e2b716b8..f9015599556 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b8c1652f407..b0692cbf360 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 6f028252c5f..ddd67a16e74 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 7e56ad50b9f..6f4ed03b7d2 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 59c485719c6..42851dabc81 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 430deabcf51..6c3873f36de 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 91e8e03ad68..1eee07fc309 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 42d84255765..f6eafc5ae43 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index bf2b259100d..2138146dd7b 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 6ed7a21be02..5e78967b48d 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonndes" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Méindes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dënschdes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mëttwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donneschdes" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freides" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samschdes" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mäerz" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abrëll" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mee" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Astellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Méint hier" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 87834dbf1b7..6db17d8f18b 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 8a0f12b4a8e..98135761975 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index a9c0f94523c..5198dfd7605 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index ba8b049e877..da8c67e6f95 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 60fc60b4e98..fdb483bf4e4 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 47f293f5bbf..0a62206af80 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 898ef2e3a59..d48f11b626f 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index acf0e28b8af..1285323cfd9 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Trynimui nepasirinkta jokia kategorija." msgid "Error removing %s from favorites." msgstr "Klaida ištrinant %s iš jūsų mėgstamiausius." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sekmadienis" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmadienis" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Antradienis" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trečiadienis" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Penktadienis" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Šeštadienis" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Sausis" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Vasaris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Kovas" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Balandis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Gegužė" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Birželis" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Liepa" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Rugpjūtis" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rugsėjis" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Spalis" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Lapkritis" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Gruodis" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šiandien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "praeitais metais" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2028ee0aced..fdf516c6c23 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index ba74135ddaf..fdee5ab7ab1 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1bc412436fe..fbc351386a0 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 195fdcf27ed..2ba0fea6f89 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 939a04910b2..b6b0c94cbae 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index f609ccc3801..86f5331f263 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index d9934d3d7cb..6c8cee48df2 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index d89c0e2266c..e070da099fc 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Neviena kategorija nav izvēlēta dzēšanai." msgid "Error removing %s from favorites." msgstr "Kļūda, izņemot %s no izlases." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Svētdiena" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmdiena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Otrdiena" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trešdiena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ceturtdiena" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piektdiena" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sestdiena" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janvāris" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februāris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprīlis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maijs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jūnijs" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jūlijs" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusts" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembris" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobris" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembris" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembris" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šodien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 5b5938acad3..8bdb9ef091a 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index e5edb12e983..41198053845 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 8575c230061..c567f174ac4 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 6533f9f9e21..36ea3e28a50 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 25b9d7cae55..8e64fadde2e 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ad414f1eba4..a0498618511 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4bf9f4e471c..91f99d2acdd 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6a84676919d..35955ca29e8 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Не е одбрана категорија за бришење." msgid "Error removing %s from favorites." msgstr "Грешка при бришење на %s од омилени." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недела" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четврток" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петок" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Сабота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јуни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јули" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Подесувања" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "денеска" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минатиот месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "пред месеци" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минатата година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index f77534ce047..574f121b314 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 6bb215dc2fb..62377577733 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index d1af7482439..592f9d06fd5 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index a0b4bc4a155..86cc58c0ec2 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 4cd7f8ed54c..00599e9e7d9 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8391e49a28f..e0fc10d0eec 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 97a0b85713c..95bb08e798b 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 843daf97d54..f36b1e91976 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tiada kategori dipilih untuk dibuang." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Ahad" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Isnin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Khamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumaat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mac" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julai" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ogos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Disember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Tetapan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 17c0d30f7a7..5266e5cc80d 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index adf2524588b..c1e3cd3bdbf 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 235ff893169..05e585c9a36 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 5fdf6338aa6..b9f47dbf7de 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 2eb4f60fc04..502cd25d58c 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a6041e01c60..f23c096f23b 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 3d198f9dd9f..ceebe7b2529 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 516852def2f..af3f8ea6c24 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွ msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ဇန်နဝါရီ" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ဖေဖော်ဝါရီ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "မတ်" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ဧပြီ" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "မေ" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ဇွန်" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ဇူလိုင်" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ဩဂုတ်" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "စက်တင်ဘာ" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "အောက်တိုဘာ" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "နိုဝင်ဘာ" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ယနေ့" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 950211e9b2d..a0e26c4841f 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index a2fd69ceacf..0816d473959 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 78a5dd6e1d4..12afb279374 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b44d52211e6..ecaebb67fb6 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ingen kategorier merket for sletting." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "forrige måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "forrige år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 36898ad1be3..1f1f3d9e985 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 61769ee279e..9130e69d5d4 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index fe4c94e896f..0f2caee682d 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 51f52b419bc..9d9071a4f94 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 0b6240bd983..8da002ac16e 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index b1d3711727e..3d289468880 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 07f39f2fbe4..782167167c4 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index acf73fb8fdb..14971bf7759 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Jorcee \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Geen categorie geselecteerd voor verwijdering." msgid "Error removing %s from favorites." msgstr "Verwijderen %s van favorieten is mislukt." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "zondag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "dinsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "woensdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "donderdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vrijdag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "zaterdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellingen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "vandaag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "gisteren" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "vorige maand" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vorig jaar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 63ab584db3c..0bec5342004 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 22b31b7cb68..91a850de16e 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 3030a7ff093..8597b94eab0 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5ca2b42dbdc..c4b6c4b8721 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 63a62f4fc18..3966005977e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1d99995b01c..ff9e9d61010 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index ab687b7d61d..9ac83f42a96 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6f2f75d30a3..5237506960e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategoriar valt for sletting." msgid "Error removing %s from favorites." msgstr "Klarte ikkje fjerna %s frå favorittar." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tysdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laurdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "førre månad" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "i fjor" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index d01efdeb832..e929f213a8a 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index cda028d5e38..eb80bb06321 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 372ed6d6c18..c45647d741e 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 6d56f2fd622..34a18f63354 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 7c40ad0267f..75ccb8b5363 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 916a72b757f..acef0336875 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index ebfd177d97b..23434cff917 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 4b2117cfc89..1a906d0e017 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Pas de categorias seleccionadas per escafar." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Diluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarç" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijòus" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "genièr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrièr" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junh" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julhet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuracion" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "uèi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ièr" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses a" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "an passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 8af162e48ab..606b5e7a283 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 60201730b47..c5a0091ed2b 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index f1a7e52a4a4..e53e22d20be 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 2fb04aa5672..3544bc2f32d 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a5c02474d03..dfcb460322f 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 78869cc489a..e76743dc031 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 0885215d87f..bccb46b3ffc 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0fd55c50939..822e8910224 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nie zaznaczono kategorii do usunięcia." msgid "Error removing %s from favorites." msgstr "Błąd podczas usuwania %s z ulubionych." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Niedziela" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Poniedziałek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Wtorek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Środa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Czwartek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piątek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Styczeń" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Luty" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Kwiecień" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Czerwiec" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Lipiec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Sierpień" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Wrzesień" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Październik" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Grudzień" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dziś" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b5f3a722169..2bc03db43df 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: adbrand \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index b990d3c0a44..0a4ae17db37 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index dfcc243b6a1..f566ac2dfff 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 08717d2bdff..d55214a3737 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index cc92491605f..e3db7a3be3f 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 082c0cc5bf2..6b4e97d60e3 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 0ff7668ea88..569064633f0 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 94b3ebe752c..7329b189f12 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria selecionada para remoção." msgid "Error removing %s from favorites." msgstr "Erro ao remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda-feira" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça-feira" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta-feira" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta-feira" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta-feira" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 0ac745ad1d1..c66a6e7950a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index cd1675f0031..0104342fa48 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 2efb9557a97..593b11afc40 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2edfad3f0dc..219dd6254a9 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b4a3db18b80..7eb4bf92d9a 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 414a167813a..ba19ac94872 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 89992c98c99..adb52d63869 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b8860022ff1..707ab0fcb5f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria seleccionada para eliminar." msgid "Error removing %s from favorites." msgstr "Erro a remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurações" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultímo mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ano passado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 4fa324ebddb..0796b5b7648 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 44332f4b485..e1b84fb835f 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 17f46670277..10fc28ff5ac 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 596e24663d7..258e0ca6135 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index d6de5ad4d99..c8b4c62d962 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 58ef49215bc..6c433390b3a 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 9044a8477d5..7d9027e2e1e 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index cf70fffebd1..2dfd6158cfd 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nici o categorie selectată pentru ștergere." msgid "Error removing %s from favorites." msgstr "Eroare la ștergerea %s din favorite" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Duminică" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luni" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Marți" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miercuri" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Joi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vineri" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sâmbătă" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ianuarie" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februarie" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martie" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilie" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Iunie" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Iulie" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembrie" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octombrie" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noiembrie" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembrie" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setări" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "astăzi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultima lună" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ultimul an" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index da1208a7e0e..262df3a32cf 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index ed306efb07f..c07e031ff18 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 51f776e22f2..b273ef97b00 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 634a5214ee9..a868777969d 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index de27c52e960..ff8cdb0cc82 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2e425be1a89..c5c31e0c000 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index efa83ef2e69..19890db8649 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 85820493c4d..844cdecf99f 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Нет категорий для удаления." msgid "Error removing %s from favorites." msgstr "Ошибка удаления %s из избранного" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Воскресенье" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедельник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четверг" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Пятница" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Суббота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Январь" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февраль" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Апрель" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Июнь" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Июль" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Сентябрь" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октябрь" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноябрь" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декабрь" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сегодня" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "в прошлом году" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index ff958e37045..50cff7a85a7 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 577f1c2213e..1292fc35b59 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 7e9d5b98c8d..519ff461ddf 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c5626e33fcb..5ea1ae6326a 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f9e070170a2..3346f4eb04c 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 2ea3ed59461..926dbd1f5ce 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index aa89e80f4a2..2c494200e6f 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d90c370aac3..cb6e479e7b7 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "මකා දැමීම සඳහා ප්‍රවර්ගයන් msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ඉරිදා" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "සඳුදා" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "අඟහරුවාදා" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "බදාදා" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "සිකුරාදා" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "සෙනසුරාදා" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ජනවාරි" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "පෙබරවාරි" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "මාර්තු" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "අප්‍රේල්" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "මැයි" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ජූනි" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ජූලි" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "අගෝස්තු" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "සැප්තැම්බර්" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ඔක්තෝබර" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "නොවැම්බර්" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "අද" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index da362147611..0ffd20f6c50 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index c8a65d793df..e42f60061d8 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c692d99227a..bf2da10b208 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ffdf208d5b3..67d76afd011 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 1ee104b8966..826709a596f 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 34cfc0f75db..1cf2f14659d 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 0fd859b2036..cdb6eb94a0f 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 79e8f21840f..c8a0a6b1d10 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Neboli vybrané žiadne kategórie pre odstránenie." msgid "Error removing %s from favorites." msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedeľa" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondelok" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorok" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Streda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Štvrtok" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piatok" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Máj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jún" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júl" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 031de089cfc..d7fa858d400 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 1e74ef99333..dfca533bff5 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 0292e541077..2047192b5b2 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 3a8a680f289..9a68d496632 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10e0f7ec21a..31cd3e6f862 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3b296582a89..6260c0901e7 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 20c80449a9c..be3e79faa0f 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3bde3a9618a..e788a357456 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s je delil »%s« z vami" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -62,135 +63,135 @@ msgstr "Za izbris ni izbrana nobena kategorija." msgid "Error removing %s from favorites." msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "torek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junij" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julij" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včeraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lansko leto" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "let nazaj" @@ -204,7 +205,7 @@ msgstr "Prekliči" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Napaka pri nalaganju predloge za izbor dokumenta" #: js/oc-dialogs.js:164 msgid "Yes" @@ -408,11 +409,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Da, potrjujem ponastavitev gesla" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +614,7 @@ msgstr "Druge prijavne možnosti" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Pozdravljen/a,

    sporočam, da je %s delil »%s« s teboj.
    Poglej vsebine!

    Lep pozdrav!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5c3ee02506c..9c70d103097 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,7 +218,7 @@ msgstr "{count} datotek" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" #: lib/app.php:73 msgid "Unable to rename file" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 1a077ab4058..c254087ec94 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index ddf9328eb3f..e835f2b4aa4 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 58a0639be39..254395350c3 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 8ce3264d144..d1ea66c7486 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +124,7 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Povezava z bazo Oracle ni uspela." #: setup.php:234 msgid "MySQL username and/or password not valid" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index a25daf32280..cb7a8b2f14a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -466,13 +467,13 @@ msgstr "Ustvari" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Obnovitev administratorjevega gesla" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index fb976fa8eda..48866f92c67 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c859d4089bb..1173aa9e396 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nuk selektuar për tu eliminuar asnjë kategori." msgid "Error removing %s from favorites." msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "E djelë" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "E hënë" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "E martë" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "E mërkurë" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "E enjte" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "E premte" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "E shtunë" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Shkurt" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Prill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Qershor" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Korrik" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Gusht" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Shtator" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tetor" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nëntor" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dhjetor" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Parametra" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "sot" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dje" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0bb091ddfe1..b59e1672ea5 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 97bd48d0f4a..673b9345b6d 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 0f78a0428ca..990851e3f2b 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 9c51d0d918a..843f87b4b14 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index bdce0babf2c..671cee2907a 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 2ddb2f8fb2d..7f40175fe3f 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 3e9e25c799f..f3737be676d 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 6f7fe3054fa..9563b6a581d 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ни једна категорија није означена за бр msgid "Error removing %s from favorites." msgstr "Грешка приликом уклањања %s из омиљених" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недеља" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедељак" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Уторак" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвртак" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петак" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануар" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Фебруар" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јун" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јул" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септембар" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октобар" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Новембар" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Децембар" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Поставке" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "данас" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "јуче" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "месеци раније" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "прошле године" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 27b206e3b30..acc93a4f25e 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 4fc8bfe2210..99d25bee2e7 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 7b6b712ad79..e405815f7cb 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index efab4ba7df8..fd2119406b7 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 94ce49629ec..6791e29139f 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0edacd55f88..d3f477f7929 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8f6660299ba..f04371d52ff 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7f2cbe42947..ea161b9e374 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jul" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembar" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobar" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembar" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembar" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index e1dfef82c02..23d50dfc234 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d4d6757e284..a43f58cbd82 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index f10e3f4586c..dd214946ecb 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 9563c8558ca..7d36543ab6c 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index fb70bae00ab..c522bfd38af 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index a03d4492b05..6466456e106 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index eb44e4ddb96..25a5e0d6562 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -64,135 +64,135 @@ msgstr "Inga kategorier valda för radering." msgid "Error removing %s from favorites." msgstr "Fel vid borttagning av %s från favoriter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Söndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tisdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lördag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusti" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Inställningar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "förra månaden" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månader sedan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "förra året" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index e3ab3a8b0fa..0d3f39e3eeb 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 8293e77ee14..0710b6acb0d 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index bbbe8d804af..0f47f362854 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c06663ba391..01862e82814 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 507f7fe2be2..244414adf05 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 6a21f615f47..7b767bdd60e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2ec1cd88767..a84c4d0a0a8 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index de4b95d8dfc..5344ba5c51f 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "நீக்குவதற்கு எந்தப் பிரிவ msgid "Error removing %s from favorites." msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ஞாயிற்றுக்கிழமை" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "திங்கட்கிழமை" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "செவ்வாய்க்கிழமை" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "புதன்கிழமை" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "வியாழக்கிழமை" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "வெள்ளிக்கிழமை" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "சனிக்கிழமை" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "தை" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "மாசி" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "பங்குனி" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "சித்திரை" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "வைகாசி" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ஆனி" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ஆடி" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ஆவணி" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "புரட்டாசி" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ஐப்பசி" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "கார்த்திகை" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "மார்கழி" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "இன்று" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index fcf558d7b33..4424fa23e53 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 91c73433118..df8be782a30 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index fa992fcda39..594c124bcfd 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index e9dbed5ce59..2d054b1c465 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index f3723f122f2..b10ad83d2d9 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 0e962dc0c4f..511fe56c307 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 20cebcc8404..f7be70cdd6f 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index ca0b7c1279a..fa019447a56 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ఆదివారం" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "సోమవారం" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "మంగళవారం" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "బుధవారం" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "గురువారం" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "శుక్రవారం" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "శనివారం" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "జనవరి" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ఫిబ్రవరి" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "మార్చి" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ఏప్రిల్" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "మే" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "జూన్" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "జూలై" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ఆగస్ట్" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "సెప్టెంబర్" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "అక్టోబర్" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "నవంబర్" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "డిసెంబర్" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ఈరోజు" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9399d377c9..70f7eeefed2 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index e23bc5a06a2..ab82f9532bb 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 183a3b5af12..1fcc1b13f7d 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b0d30e54b9b..1d928317ce7 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 3645b758858..5b573e7250e 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 5795cb7c3d3..16fc4f7ddba 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d0440871c34..e3bb913d358 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0e29168897c..3137d0afdcf 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index db3121dbd31..315a63e26ca 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 7007062249f..1e22f4b7da9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 12b381fd721..c8c62564276 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 31bfae35d98..71106f11536 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 13326efe046..9300ffc6d0a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7b9eb60885a..7ecd830f540 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 177a75f01e1..28360882ec3 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9479b50b68c..6476759c262 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e6d1550b779..7e5ca80be67 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 3a3393804f6..39bb66e5d38 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ยังไม่ได้เลือกหมวดหมู่ที msgid "Error removing %s from favorites." msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "วันอาทิตย์" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "วันจันทร์" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "วันอังคาร" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "วันพุธ" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "วันศุกร์" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "วันเสาร์" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "มกราคม" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "กุมภาพันธ์" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "มีนาคม" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "เมษายน" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "พฤษภาคม" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "มิถุนายน" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "กรกฏาคม" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "สิงหาคม" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "กันยายน" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ตุลาคม" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "พฤศจิกายน" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ธันวาคม" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "วันนี้" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 61815d1e936..e1f44e0ec7e 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4341cd5cf42..7b152eddd66 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index cf172ba893e..121e631d1b9 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 39875c6c052..5c2df225b20 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 9ffcadec3d6..8329473e3af 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0ab25361c6a..cbba1f41792 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 93493763a77..ae682aa4560 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4e66cbc4cfd..2ae9532843c 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Silmek için bir kategori seçilmedi" msgid "Error removing %s from favorites." msgstr "%s favorilere çıkarılırken hata oluştu" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pazar" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pazartesi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Salı" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Çarşamba" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Perşembe" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Cuma" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Cumartesi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ocak" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Şubat" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Nisan" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayıs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Haziran" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Temmuz" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ağustos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Eylül" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ekim" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Kasım" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Aralık" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "bugün" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dün" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "geçen ay" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ay önce" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "geçen yıl" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cc38053168b..741556483fb 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 418f0a3bcd7..b4e85d7f7b5 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index e2294c4feda..28253762688 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 188c11017a2..6326f7139f5 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f21d2dd4370..fb2e2e216d5 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 6a3b63dc046..b96cc4683b3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 7ba36267212..0fd94367879 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 6089b3606d8..15d2e5c62b8 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "يەكشەنبە" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دۈشەنبە" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چارشەنبە" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پەيشەنبە" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جۈمە" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شەنبە" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "قەھرىتان" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ھۇت" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "نەۋرۇز" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ئۇمۇت" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "باھار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "سەپەر" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "چىللە" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "تومۇز" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "مىزان" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ئوغۇز" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ئوغلاق" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كۆنەك" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "بۈگۈن" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index a73cbb01acd..b9efc62b015 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index bd5ffff3a22..03a2c47e099 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 28bc0bfd755..c23bb2e315e 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 0684a53b3fb..53f052cae33 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 2aceb7019ec..842844cd401 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index d8b3c96b2b7..a355eb4626a 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a6fb13c8f0c..738b5839ff2 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 4dea6f8b180..d5b5d319433 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Жодної категорії не обрано для видален msgid "Error removing %s from favorites." msgstr "Помилка при видалені %s із обраного." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неділя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеділок" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вівторок" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Середа" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвер" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "П'ятниця" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Січень" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Лютий" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Березень" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Квітень" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Травень" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Червень" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Липень" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Серпень" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Вересень" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Жовтень" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Листопад" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Грудень" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Налаштування" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сьогодні" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчора" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минулого місяця" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "місяці тому" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минулого року" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 008c0f85f18..16a90863243 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 1b5e6a3f234..b5011acb944 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 6232d2ee417..811aca80f66 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 50805230f8d..370a8806022 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ea816a426dc..4b24b992c73 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 370bbb936f3..610914ea2a1 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b70c1e42374..bfe36ecf30f 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6cbc956d8cb..bc6342b1da0 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب ن msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "جنوری" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فرورئ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارچ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "اپریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "مئی" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "جون" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولائی" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "اگست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ستمبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتوبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نومبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسمبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 18bde9e30a2..d72ea3f5edb 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index a15724fbb66..888a3128af5 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 1d699bc38a6..52b8565ddfb 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6d887cd7d19..3c3cf8b34d8 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 8da1c6a159f..cd94e8a4144 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index ab937a595ee..df35efcde29 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Bạn chưa chọn mục để xóa" msgid "Error removing %s from favorites." msgstr "Lỗi xóa %s từ mục yêu thích." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Chủ nhật" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Thứ 2" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Thứ 3" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Thứ 4" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Thứ 5" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Thứ " -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Thứ 7" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Tháng 1" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Tháng 2" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Tháng 3" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Tháng 4" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Tháng 5" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Tháng 6" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Tháng 7" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Tháng 8" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Tháng 9" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tháng 10" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tháng 11" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Tháng 12" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hôm nay" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "tháng trước" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "tháng trước" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "năm trước" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 9087c7d8efc..d1dce1da9f7 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index e7b6e40ae3b..15469440b0d 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 921957dacd5..a6fc9419931 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 89cefe5b3b9..4b130127740 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 6f3be6d060d..a4c8d129fdb 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 665ca3aff96..f67e5874d21 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d41ff5365af..4ff03f14066 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index cabc3fa2cf7..c414ac1915e 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "没有选中要删除的分类。" msgid "Error removing %s from favorites." msgstr "在移除收藏夹中的 %s 时发生错误。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期天" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上个月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7ea290bef6e..a653b79dacf 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27e3bb2f033..da1bb9271ae 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 5ddada9bda5..f5180756957 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 03a068568de..57dba764c2a 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 5f575f56efd..591ce747f93 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6ec7f7cff76..ae024660770 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 4c6b07207df..7c48040ec57 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 7b713baa214..2d579363b8b 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "没有选择要删除的类别" msgid "Error removing %s from favorites." msgstr "从收藏夹中移除%s时出错。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1c792153cd3..881aea33635 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 94375cf1b8a..abe654c88b1 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 111e094460e..0560ca69980 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 74bc91c661e..1e3ca9bbcc9 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index e8e6179f197..9a08aea77ac 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 976de08fc87..4c2e9855d9b 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 315a0ac33ab..c54990d151a 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index c3282eca957..e2853f2f35f 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "前一月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "個月之前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 8b9823ccea1..4d537e89661 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index a180f2b4568..c87bca5396b 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index d8f8f0bcc2b..8cd3b5d5538 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 9a5d074e4d7..c1476ad923f 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5e3b13ad018..e9161ca7520 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 787dfe4975d..04b5de8a9e1 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 055359846a7..a8ba2430a2d 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index c2abc1a16f7..466c0f853b5 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "沒有選擇要刪除的分類。" msgid "Error removing %s from favorites." msgstr "從最愛移除 %s 時發生錯誤。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "週日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "週一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "週二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "週三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "週四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "週五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "週六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上個月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "幾個月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4896947e1dd..cdaa641ec8a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 1aca2dcbc34..105b73d51de 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 6c75be8ce99..e45bdeb4317 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 86ccf90cda6..6bcfdab8fca 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 246177c3609..f4b86ca7514 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f1377e02810..05300a3ee5c 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 9932a5abb00..f9a6bb35499 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 7f8827d17f3..2073f545232 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -24,6 +24,7 @@ "%s set the database host." => "%s - vnos gostitelja podatkovne zbirke.", "PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", "You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", +"Oracle connection could not be established" => "Povezava z bazo Oracle ni uspela.", "MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index f8876ca7046..9f147f8f2d8 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,37 +1,37 @@ "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", -"Your display name has been changed." => "El nombre mostrado fue cambiado", +"Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", "Unable to change display name" => "No fue posible cambiar el nombre mostrado", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", -"Could not enable app. " => "No se puede habilitar la aplicación.", +"Could not enable app. " => "No se pudo habilitar la App.", "Email saved" => "e-mail guardado", -"Invalid email" => "el e-mail no es válido ", -"Unable to delete group" => "No fue posible eliminar el grupo", -"Unable to delete user" => "No fue posible eliminar el usuario", +"Invalid email" => "El e-mail no es válido ", +"Unable to delete group" => "No fue posible borrar el grupo", +"Unable to delete user" => "No fue posible borrar el usuario", "Language changed" => "Idioma cambiado", -"Invalid request" => "Pedido no válido", -"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a ellos mismos del grupo administrador. ", -"Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", -"Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", -"Couldn't update app." => "No se pudo actualizar la aplicación.", -"Update to {appversion}" => "Actualizado a {appversion}", +"Invalid request" => "Pedido inválido", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a si mismos del grupo administrador. ", +"Unable to add user to group %s" => "No fue posible agregar el usuario al grupo %s", +"Unable to remove user from group %s" => "No es posible borrar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la App.", +"Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor, esperá....", "Error" => "Error", "Updating...." => "Actualizando....", -"Error while updating app" => "Error al actualizar", +"Error while updating app" => "Error al actualizar App", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", "undo" => "deshacer", -"Unable to remove user" => "Imposible remover usuario", +"Unable to remove user" => "Imposible borrar usuario", "Groups" => "Grupos", "Group Admin" => "Grupo Administrador", "Delete" => "Borrar", -"add group" => "Agregar grupo", +"add group" => "agregar grupo", "A valid username must be provided" => "Debe ingresar un nombre de usuario válido", "Error creating user" => "Error creando usuario", "A valid password must be provided" => "Debe ingresar una contraseña válida", @@ -41,38 +41,38 @@ "Setup Warning" => "Alerta de Configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", -"Module 'fileinfo' missing" => "Modulo 'fileinfo' no existe", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no existe. Es muy recomendable que active este modulo para obtener mejores resultados con la detección mime-type", +"Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "El servidor ownCloud no pude asignar la localización de sistema a %s. Esto puede hacer que hayan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios como montar dispositivos externos, notificaciones de actualizaciones o instalar aplicaciones de otros desarrolladores no funcionan. Acceder a archivos remotos y mandar e-mails puede ser que tampoco funcione. Te sugerimos que actives una conexión a internet si querés estas características de ownCloud.", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Ejecute una tarea con cada pagina cargada.", +"Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", "Allow links" => "Permitir enlaces", "Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", "Allow resharing" => "Permitir Re-Compartir", -"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que le han compartido", -"Allow users to share with anyone" => "Permitir a los usuarios compartir con todos.", -"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir solo con los de su propio grupo", +"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectese a este ownCloud vía HTTPS para habilitar o des-habilitar el forzado de SSL", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL.", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", "Less" => "Menos", "Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", -"Add your App" => "Añadí tu aplicación", -"More Apps" => "Más aplicaciones", -"Select an App" => "Seleccionar una aplicación", +"Add your App" => "Añadí tu App", +"More Apps" => "Más Apps", +"Select an App" => "Elegí una App", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "Update" => "Actualizar", @@ -82,9 +82,9 @@ "Forum" => "Foro", "Bugtracker" => "Informar errores", "Commercial Support" => "Soporte comercial", -"Get the apps to sync your files" => "Obtené aplicaciones para sincronizar tus archivos", +"Get the apps to sync your files" => "Obtené Apps para sincronizar tus archivos", "Show First Run Wizard again" => "Mostrar de nuevo el asistente de primera ejecución", -"You have used %s of the available %s" => "Usaste %s de los %s disponibles", +"You have used %s of the available %s" => "Usás %s de los %s disponibles", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", @@ -92,14 +92,14 @@ "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", -"Email" => "Correo Electrónico", +"Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", -"Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", +"Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos", -"Login Name" => "Nombre de ", +"Use this address to connect to your ownCloud in your file manager" => "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos", +"Login Name" => "Nombre de Usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de contraseña de administrador", "Enter the recovery password in order to recover the users files during password change" => "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", @@ -108,7 +108,7 @@ "Other" => "Otros", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", -"change display name" => "Cambiar el nombre que se muestra", +"change display name" => "Cambiar el nombre mostrado", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 21c10abf0fe..63fb86485c9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -101,6 +101,8 @@ "Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud.", "Login Name" => "Prijavno ime", "Create" => "Ustvari", +"Admin Recovery Password" => "Obnovitev administratorjevega gesla", +"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla", "Default Storage" => "Privzeta shramba", "Unlimited" => "Neomejeno", "Other" => "Drugo", -- GitLab From 45c897acf34151672d68ee767ff15ab010676335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 27 Jun 2013 13:13:49 +0200 Subject: [PATCH 065/215] one if less --- lib/db.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/db.php b/lib/db.php index 984c2bcf149..fecc622d963 100644 --- a/lib/db.php +++ b/lib/db.php @@ -326,6 +326,7 @@ class OC_DB { * @param string $query Query string * @param int $limit * @param int $offset + * @param bool $isManipulation * @return MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! @@ -393,11 +394,7 @@ class OC_DB { throw new DatabaseException($e->getMessage(), $query); } // differentiate between query and manipulation - if ($isManipulation) { - $result=new PDOStatementWrapper($result, true); - } else { - $result=new PDOStatementWrapper($result, false); - } + $result = new PDOStatementWrapper($result, $isManipulation); } if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { $type = OC_Config::getValue( "dbtype", "sqlite" ); -- GitLab From c4aef892788ced15812cc31abcf34c085b66ce5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 27 Jun 2013 14:09:22 +0200 Subject: [PATCH 066/215] introduce pre-disable-app hook and use it for the encryption app to reset migration status if the app was disabled --- apps/files_encryption/appinfo/app.php | 3 +++ apps/files_encryption/hooks/hooks.php | 13 +++++++++++++ apps/files_encryption/lib/helper.php | 9 +++++++++ lib/app.php | 1 + 4 files changed, 26 insertions(+) diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index d97811bb791..ca3f2554e5e 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -22,6 +22,9 @@ if (!OC_Config::getValue('maintenance', false)) { // Filesystem related hooks OCA\Encryption\Helper::registerFilesystemHooks(); + // App manager related hooks + OCA\Encryption\Helper::registerAppHooks(); + stream_wrapper_register('crypt', 'OCA\Encryption\Stream'); // check if we are logged in diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index e39e068cc5d..09153918940 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -543,4 +543,17 @@ class Hooks { \OC_FileProxy::$enabled = $proxyStatus; } + + /** + * set migration status back to '0' so that all new files get encrypted + * if the app gets enabled again + * @param array $params contains the app ID + */ + public static function preDisable($params) { + if ($params['app'] === 'files_encryption') { + $query = \OC_DB::prepare('UPDATE `*PREFIX*encryption` SET `migration_status`=0'); + $query->execute(); + } + } + } diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index a22c139c503..b2045bfcea8 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -62,6 +62,15 @@ class Helper { \OCP\Util::connectHook('OC_Filesystem', 'post_rename', 'OCA\Encryption\Hooks', 'postRename'); } + /** + * @brief register filesystem related hooks + * + */ + public static function registerAppHooks() { + + \OCP\Util::connectHook('OC_App', 'pre_disable', 'OCA\Encryption\Hooks', 'preDisable'); + } + /** * @brief setup user for files_encryption * diff --git a/lib/app.php b/lib/app.php index f974dd9f594..f9b1c5ca7b5 100644 --- a/lib/app.php +++ b/lib/app.php @@ -259,6 +259,7 @@ class OC_App{ */ public static function disable( $app ) { // check if app is a shipped app or not. if not delete + \OC_Hook::emit('OC_App', 'pre_disable', array('app' => $app)); OC_Appconfig::setValue( $app, 'enabled', 'no' ); // check if app is a shipped app or not. if not delete -- GitLab From 2e6ebe1ab4e1ae6d0fb730e833c09ac4dbbb895c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 27 Jun 2013 14:14:25 +0200 Subject: [PATCH 067/215] fix function documentation --- apps/files_encryption/lib/helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index b2045bfcea8..0d30dd8e7b5 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -63,7 +63,7 @@ class Helper { } /** - * @brief register filesystem related hooks + * @brief register app management related hooks * */ public static function registerAppHooks() { -- GitLab From 121e4ca395f05b6dff8903650a71a95cd4a3a229 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 27 Jun 2013 16:31:31 +0200 Subject: [PATCH 068/215] PHPUnit: Allow developers to use their own custom phpunit.xml file. The order of precedence of configuration files for PHPUnit is: - phpunit.xml (allowing custom user defined configuration) - phpunit.xml.dist (configuration distributed with the software) --- tests/{phpunit.xml => phpunit.xml.dist} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{phpunit.xml => phpunit.xml.dist} (100%) diff --git a/tests/phpunit.xml b/tests/phpunit.xml.dist similarity index 100% rename from tests/phpunit.xml rename to tests/phpunit.xml.dist -- GitLab From d015b9219c0a4856490df38bf144115a1048ef8e Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 27 Jun 2013 16:44:55 +0200 Subject: [PATCH 069/215] PHPUnit: Add tests/phpunit.xml to gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 68977ad0775..c96ca421359 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,9 @@ nbproject .well-known /.buildpath +# Tests +/tests/phpunit.xml + #tests - autogenerated filed data-autotest /tests/coverage* -- GitLab From 2269145b4da6f7e2697184f8f3f107c0cbd0672a Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 27 Jun 2013 16:50:17 +0200 Subject: [PATCH 070/215] gitignore: Fix typo + adjust comment format. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c96ca421359..6259482c002 100644 --- a/.gitignore +++ b/.gitignore @@ -75,7 +75,7 @@ nbproject # Tests /tests/phpunit.xml -#tests - autogenerated filed +# Tests - auto-generated files data-autotest /tests/coverage* /tests/autoconfig* -- GitLab From 2eaad589221a9a189cece52390873f9bd27f113b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 27 Jun 2013 20:10:45 +0200 Subject: [PATCH 071/215] Make the object drive the logging backend This is the other way around then it was. --- lib/legacy/log.php | 17 +++++++++++------ lib/log.php | 12 +++++++----- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/lib/legacy/log.php b/lib/legacy/log.php index 4e6642b6a2f..a316051d5af 100644 --- a/lib/legacy/log.php +++ b/lib/legacy/log.php @@ -23,6 +23,14 @@ class OC_Log { const ERROR=3; const FATAL=4; + static private $level_funcs = array( + self::DEBUG => 'debug', + self::INFO => 'info', + self::WARN => 'warning', + self::ERROR => 'error', + self::FATAL => 'emergency', + ); + static public $enabled = true; static protected $class = null; @@ -34,12 +42,9 @@ class OC_Log { */ public static function write($app, $message, $level) { if (self::$enabled) { - if (!self::$class) { - self::$class = 'OC_Log_'.ucfirst(OC_Config::getValue('log_type', 'owncloud')); - call_user_func(array(self::$class, 'init')); - } - $log_class=self::$class; - $log_class::write($app, $message, $level); + $context = array('app' => $app); + $func = array(self::$object, self::$level_funcs[$level]); + call_user_func($func, $message, $context); } } diff --git a/lib/log.php b/lib/log.php index 442872af9c4..2e26ccad2da 100644 --- a/lib/log.php +++ b/lib/log.php @@ -19,10 +19,6 @@ namespace OC; */ class Log { - const NOTICE=5; - const CRITICAL=6; - const ALERT=7; - /** * System is unusable. * @@ -114,6 +110,11 @@ class Log { $this->log(\OC_Log::DEBUG, $message, $context); } + public function __construct() { + $this->log_class = 'OC_Log_'.ucfirst(\OC_Config::getValue('log_type', 'owncloud')); + call_user_func(array($this->log_class, 'init')); + } + /** * Logs with an arbitrary level. * @@ -127,6 +128,7 @@ class Log { } else { $app = 'no app in context'; } - \OC_Log::write($app, $message, $level); + $log_class=$this->log_class; + $log_class::write($app, $message, $level); } } -- GitLab From fb80cbd4997625c2d87457d5ba0b908206474d4d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 27 Jun 2013 22:01:52 +0200 Subject: [PATCH 072/215] Fix review points --- lib/log.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/log.php b/lib/log.php index 2e26ccad2da..8c157d003cf 100644 --- a/lib/log.php +++ b/lib/log.php @@ -19,6 +19,8 @@ namespace OC; */ class Log { + private $logClass; + /** * System is unusable. * @@ -111,8 +113,8 @@ class Log { } public function __construct() { - $this->log_class = 'OC_Log_'.ucfirst(\OC_Config::getValue('log_type', 'owncloud')); - call_user_func(array($this->log_class, 'init')); + $this->logClass = 'OC_Log_'.ucfirst(\OC_Config::getValue('log_type', 'owncloud')); + call_user_func(array($this->logClass, 'init')); } /** @@ -122,13 +124,13 @@ class Log { * @param string $message * @param array $context */ - protected function log($level, $message, array $context = array()) { + public function log($level, $message, array $context = array()) { if (isset($context['app'])) { $app = $context['app']; } else { $app = 'no app in context'; } - $log_class=$this->log_class; - $log_class::write($app, $message, $level); + $logClass=$this->logClass; + $logClass::write($app, $message, $level); } } -- GitLab From de93b21505e1281c529cc2d1dc350b62bb387cca Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 27 Jun 2013 23:14:32 +0200 Subject: [PATCH 073/215] missing $ --- lib/legacy/log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/legacy/log.php b/lib/legacy/log.php index a316051d5af..7802ead2412 100644 --- a/lib/legacy/log.php +++ b/lib/legacy/log.php @@ -38,7 +38,7 @@ class OC_Log { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { if (self::$enabled) { -- GitLab From 6127fee5aa012e58c124b00f159afd3d3d95d8ce Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 28 Jun 2013 02:04:58 +0200 Subject: [PATCH 074/215] [tx-robot] updated from transifex --- apps/files_encryption/l10n/sl.php | 12 +++++++++++- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_encryption.po | 27 ++++++++++++++------------- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- 526 files changed, 1060 insertions(+), 1049 deletions(-) diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index a420fe161df..d80613b4b12 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,4 +1,14 @@ "Geslo je bilo uspešno spremenjeno.", +"Could not change the password. Maybe the old password was not correct." => "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen.", "Saving..." => "Poteka shranjevanje ...", -"Encryption" => "Šifriranje" +"personal settings" => "osebne nastavitve", +"Encryption" => "Šifriranje", +"Enabled" => "Omogočeno", +"Disabled" => "Onemogočeno", +"Change Password" => "Spremeni geslo", +"Old log-in password" => "Staro geslo", +"Current log-in password" => "Trenutno geslo", +"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", +"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" ); diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 31bdca83b3d..3e2a0420f83 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 9b01c579b9e..a12ca80f12a 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 05b06fab6dd..7edca4cb77e 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 34e761cae76..4898a1ad46c 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 988d5ebebfa..5c502f84616 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 437b69629bd..150b89490da 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index bd2b457e792..7016b07b452 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 867f49d2b70..c673a183e3d 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index ddca1e6ae99..2df1ed86ae7 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 011fc25e13c..fc7c0813dc0 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 00d87b41f43..b00a21cd12f 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index ddb538244d5..928620c8c8d 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 2b08f0d6677..6b77c507fad 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 192efb5851f..ba5eafd89a2 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f29ac6635eb..0425d5bcd12 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index ad7c0357d02..7d892caddca 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index f2b3fc22318..d2244f8f26d 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 07ee317ad85..b95e2af8542 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index cfe1b9b844c..f602aa8001f 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index d853a61f334..50c519a6f8a 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 09707722e7a..f1eaee6bfdf 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 803e8d9d963..d814ba94101 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 69260fef1d6..bdea723e5bf 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 128c7d3fcd4..044795a52b8 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 46532b31658..12302412a5a 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 29f58f4aa81..4a591c91667 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index bb4f2b7d283..a2a5ebbb22a 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 20ccb5b258a..708f20fc338 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 3fd75c89a06..b18273dc29e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 254cc340b58..30c99fd9486 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index ff1381a5e73..258170d04a7 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3b8a0cc2eea..488533bdbbc 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2414446f6b5..c221d72cae0 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index cc8ccc0c43d..c1200a5a33c 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 82ea2ba8316..2981c3293a1 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8eeec23519e..dcfd934eeb4 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index fb5a03244ea..46deef94bdf 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index c9b5668a947..cd1cd3a4145 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index d9f7b34e1b8..856f3b65b7c 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 68e2d992a24..ebd413ab142 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 9ee3bf82acc..b6bb1f9903a 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e176331e715..3a490d2e8a4 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index fb5b30b2575..d3acf48c8b8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 4c961404396..7e99e29fbb5 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 8906b9ea9ac..562a37a0ab3 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 76ff15a6841..991a0e37e35 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c58d72ff7bb..5fab9dbda4a 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 86db3791ede..e4455094971 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f546eae2f49..4b5340d0bae 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9ea9f8090a9..5bea91c7269 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 75833170a82..7150bd64251 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index d7334952045..1265ff42843 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index ee6c9080163..fa812cc588f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 704931beab4..a712dfd102b 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index eafd16c7427..a26ce5d0035 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 3a22e6e795f..32bf2873a4f 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index d23d0442e7a..ac032032948 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 5e8d92bee7c..cfd49d83c9d 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index b32c7aed8bb..9c5188d8109 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 1f342949878..b0da1cfe8d5 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 35c67d411d4..d96655c4797 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 7c3e231b420..5b305c5dbce 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 882763d90bc..9c4b571c803 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index e90bd78c68b..79b9329c532 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 5e3dfd1d6df..408a6dfca92 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 3ec1822e0a5..2c00a1416b5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 39c8ba7b09b..53e2496a595 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 49668527613..e575a9af183 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index b5047217be9..d35729d292a 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 4705bfd661c..641765eb02e 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index d7c7aeb4841..72762135d66 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 1498082f98c..a5e4564dce1 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index bd5e4d7211a..7ed7abf5d23 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index c58c3385354..ba9f27815a7 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 2925095e774..fe391ef40d3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 081b5b96b20..f2f00ba65fc 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index a20ea258718..7b1288ee4d7 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index fb3093c73ce..77745124699 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index afcc88c4679..4f087b7f5a4 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index ccc9acb85ef..f7864d342c4 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 4196cfc39b9..ee0e8201baf 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 10f6a92df0d..eb144433628 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index ef64fb25bcd..da12f71303d 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index a61540a499b..f16709aa46f 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 73f08aaeaf2..df4c76d7a7f 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index b781a694c4f..0b98d4ec9c3 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index f713dc9520a..a1d4af7ac84 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 499fe7a5ab0..96490ba84d4 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f4c97b1fb39..a2d2fd645a5 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 894fdd59e1b..ce955376cee 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 452fc983624..2fd12e9d9d6 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 2334a6d7046..bf19cd385f4 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index bb60932db44..e627a09f323 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3c175bf08b1..1e17f88fcee 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8336716d102..651ab1e521b 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 3875ee70288..0832ba47682 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 26df699be7a..937cc081cb7 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index e05f305a345..2633f603a89 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9b39ad5bc7b..d09099c11a7 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c488eaa0892..4c337ee3b54 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 479d7d74bee..49dc4d4b9bb 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 6822bd513bd..3f8490c0844 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index a849873ab45..f1153d0a932 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index eaaa23e5229..ba9405f152a 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 4e29e09f93d..40a8978f029 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4533c27b400..a856cf6327d 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 76f8ff093e6..86c1c1ab6da 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index fb9e9ec5e43..1cb59f7906a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 42feceeb67b..95060d06053 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 6c08270baa7..acf4a2aee0b 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index c3b6f1ba02e..d7d7419fd63 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index b0ad35f3b12..09fe97dce37 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 5ca9cbdde30..d03bcb2b112 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 4103f63f2ab..e54855152d6 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index a5d1e8cdd86..ffbf7712bb2 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 0937931cf13..c5e28c9fc1b 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 252378f443c..4b0628f61b1 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 360feb9330e..facc076fe9c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 3febc63ea4b..577c3f8256c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index f7dac2f7262..e4bf9af5aa9 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index d28abc7639c..7bee0182248 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index b6e8cb6e249..7d549149859 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 3910c3caed9..065623f8839 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index ca85f0617b1..0d9fb511a57 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index e6e7382d6e4..8eeb819e80a 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 8d9195be01b..c31972fc137 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 621c79d1475..cdc3359a6ca 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 21cf84dbff8..4ae449d89a7 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index b046c10a83d..43386b56af2 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index aac2a6e7a1a..3929758448a 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index b48fee0a48c..e12808e6c81 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 89080126f20..cfdf0806735 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 713fd399852..8e91ec15fdb 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index a6aa61f34f1..108f9b29249 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 66e663a4f39..dbca58cb19a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index ee71e0b7b9a..9ca64b8defe 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index f05df1e9f7b..1cda97e3888 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 6530f623379..bc6d599442e 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 0120a65d470..4b128fed3cf 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 58d8433e2af..6795aab9e51 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 299c394b225..b1e8900dbd5 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index a2c93dd4ca3..b6652f1f5e0 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 449ef186a76..09fb95edf55 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index c425552f2cf..e00eff2f21a 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index d05867275af..78d54bd5b77 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 272e625ddb4..af9bdc98b80 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 67bb78cc0ca..cf41c399b15 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 47dd91ddd4b..518ee15872d 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 38cef14b2ea..be0621492f2 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 29b7623755c..55f954086a5 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 1f2e545aed8..40c4c782a4b 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 1f4976803d5..beadabb66a8 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 4a1ce255598..30209872a77 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index afb40ecd577..e9aff1df343 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index cd71224bdfd..d28e4d61712 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 39c66c1c09c..8407c00a149 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 6b49d7644b1..98a8bacb335 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index af1943fa8df..34d8fe556fd 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 826742d7e51..89d028103aa 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ee63494bcc8..d31c639e912 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 5ee7399de82..2fa14e6c5a2 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 120eea30e35..c844e366216 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index a8fc8dbfd42..ada7f390dd8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 8c17f3c3195..ee845f2ea24 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 8298638ee4c..ed6c15221fb 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index b4f222f17ca..345b1c3aecd 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 6c912156a47..cefdec303da 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 9f59d45d6b3..82a5073eafe 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 2574788614f..2160e5500ab 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 7952b00e05f..1245a6aa379 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 8c9b155be94..0354e57049f 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 3af9e1f1232..546533e36fd 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 4528ac0305b..ec1f077d07a 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c439b9bde6d..4b67d6c0e37 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 2df06277c05..81888094082 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 0bd1775a0e2..d9db452c8a4 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e60b51bc5ac..c68d300e34a 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 002cae68a76..e9b24ea7229 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 3e952ca8b78..39182d45c3b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 998e396cdf7..f94c4cebc24 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f580f34096f..824b501e256 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0dda0bb1faa..54accf91765 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index ad37f5cf77e..3b5ed8de083 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 75e0e76e6b6..81912b15e8f 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 9a6213278b5..8adcaa76c5d 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index f660d2e85a9..6456e045272 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 3a6821a5560..bd5f27c97a5 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 1864e34b418..e925f9b40a7 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 0943c5053df..52bda8e75f6 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 40ef0e36887..b459b18d253 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 8f87d09748f..070d58a0dc7 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 22a4ec2dbf5..ff4b3ecca13 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index a0d49bc7b5f..fffe1794a25 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index a1f2ce2c334..859b676d9a4 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index c9856ed3c2a..63f11f3d0f1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 1aa675768a7..00a472c3dde 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 995eae2691f..907030c9f8c 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index dbe6e8158df..5dae3f8ba93 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 35a5ede8922..f49d387f8de 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index eec98f5b5ac..ef8795e0c89 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 071563e748a..d0548e0d662 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index cbd68a69290..e8eec74f576 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 852012e9a83..cf5f6f310f6 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a053d59f283..be9201ab06b 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 45f0527d041..6bff8ba3cdc 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9b17fb7ddf6..2aa94029fcb 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 8211b5cb636..f2317464af3 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 5f8a56defc7..69552d4a9c3 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index c5133e3f4d0..4f2e9d15957 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index a597260cc78..c0eba8974e1 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 59bb25868e6..b9fdd156edb 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 434621feebb..2c3099a95bb 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index fda6115e7eb..61d91e8bc42 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 4c08573739e..28d0802c6a5 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index f6058d695de..bed57bb1db6 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 897eaaf0474..eec68bfd4d3 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index e2cd88ed283..5e8efda062e 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 38c5ab889c7..f340eb819b9 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0d372da2de3..6b3651733c0 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 9f5102f776d..3dcaacb2e8c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 3aa9f86baaf..bce6a040033 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index c8f9bd471ea..e9ebc8f02b3 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 0f42f27db81..8fbd486144d 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index c302f6ac225..9808cc86b86 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 73c55e6687e..c06465a2fc0 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index ff1dff50081..981f77294af 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 67458013c6d..64a89c39803 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 1b36729b825..dabb24fc9bb 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index aed0a9b3566..32d5e38e004 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 230ac84ddf9..edb5cf3ce4c 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ff870b72f4a..05a773e94d9 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 7f4cb798614..a0c179d9644 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index f55ee1983a8..b358a724cba 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 094b3063850..5994fd902e6 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 4b6b2421e30..a989f2ef7c5 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index bcd4dd09a6c..ab52f3b3044 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 97f5afb0054..6ab28f43288 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 2942562fbd3..807ff227866 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 777644e2df4..0bd8b13cd88 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 101547c6d36..6af34a21b42 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index db446f07e9b..1d1247b10a2 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index f2cd849e917..6481e296206 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 89d32881abf..7d08a0e7025 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index b3159431ec0..e4c656629bc 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f9015599556..6ae819962c1 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b0692cbf360..0f83269b4b9 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index ddd67a16e74..95826e76113 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 6f4ed03b7d2..fd5dd0f5455 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 42851dabc81..b6a8f53842f 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 6c3873f36de..413ac49b299 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index f6eafc5ae43..fc512bc10b0 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 2138146dd7b..f3e00a1d001 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 5e78967b48d..60379686dff 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 6db17d8f18b..fb1d1b19a23 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 98135761975..687547dc58c 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 5198dfd7605..f8d20ffebad 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index da8c67e6f95..ae374f29da4 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index fdb483bf4e4..37d15bb4faa 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 0a62206af80..ba1bad3a5f5 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index d48f11b626f..52c2fd0104c 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 1285323cfd9..c957d083e92 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index fdf516c6c23..cfdd8b6575b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index fdee5ab7ab1..dd9aa2f02be 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index fbc351386a0..734ee14a825 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 2ba0fea6f89..b7ae4ad9435 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index b6b0c94cbae..848fe52f63f 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 86f5331f263..64fcf37368e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 6c8cee48df2..eb4dbf3f604 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index e070da099fc..6002386da9a 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 8bdb9ef091a..02cd9f6e388 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 41198053845..14951bb69da 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index c567f174ac4..e4081286a6f 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 36ea3e28a50..adebb46906c 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 8e64fadde2e..86bfdc9e251 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index a0498618511..f526323be1d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 91f99d2acdd..b9c512c2c76 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 35955ca29e8..718319d4cc4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 574f121b314..4e860715010 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 62377577733..77a8be9cbf7 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 592f9d06fd5..97121ec6373 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 86cc58c0ec2..bd067e7a54a 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 00599e9e7d9..2e0892bc2a3 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index e0fc10d0eec..2a9ec9349a2 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 95bb08e798b..acebfc52293 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index f36b1e91976..3e28ed0e240 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 5266e5cc80d..055e2cb85c7 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index c1e3cd3bdbf..81a80fd753c 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 05e585c9a36..7464b2a5374 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b9f47dbf7de..145b71f254e 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 502cd25d58c..18ce9f932fc 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index f23c096f23b..c77c38892a9 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index ceebe7b2529..8010f193890 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index af3f8ea6c24..3b7d5c135d3 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index a0e26c4841f..ca690e8ed9f 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 0816d473959..750c64be623 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 12afb279374..4c8f5e09540 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index ecaebb67fb6..e2dc45df485 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1f1f3d9e985..3837df8a46a 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 9130e69d5d4..e36cecb173b 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 0f2caee682d..077acf860ab 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 9d9071a4f94..341c3a23eca 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 8da002ac16e..09b406d78ae 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 3d289468880..112621ccdb6 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 782167167c4..a984f8c98e1 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 14971bf7759..9ec6ccadd11 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Jorcee \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 0bec5342004..8cf5a719db8 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 91a850de16e..1bd4a361e6f 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 8597b94eab0..03c4e6932f7 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index c4b6c4b8721..04ca2571dda 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 3966005977e..09be9b42296 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ff9e9d61010..f43902599e1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 9ac83f42a96..67939315958 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 5237506960e..2d30acb1c54 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e929f213a8a..3087ed3cf1e 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index eb80bb06321..4551949b914 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index c45647d741e..99bf605abe3 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 34a18f63354..61073816937 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 75ccb8b5363..c8103a81f06 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index acef0336875..ecc510d450e 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 23434cff917..2e852e78df6 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 1a906d0e017..d6a716a1ee9 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 606b5e7a283..dbbb4e64a32 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index c5a0091ed2b..34979c609ae 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index e53e22d20be..283838c7503 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 3544bc2f32d..ff584fc95b2 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e76743dc031..9cd1ed21b92 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index bccb46b3ffc..bbb86578fe7 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 822e8910224..fed18b1364e 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2bc03db43df..4dc1fdd0f92 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: adbrand \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 0a4ae17db37..9637649dad3 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index f566ac2dfff..3292ddb72ce 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index d55214a3737..79274126b21 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e3db7a3be3f..e581df953fb 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 6b4e97d60e3..47d0c9cb838 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 569064633f0..f030e64c156 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 7329b189f12..a5b7064a87a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c66a6e7950a..bd532d1bb69 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 0104342fa48..dfc8f3c16e4 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 593b11afc40..d1357b46fef 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 219dd6254a9..35d5b0bf2af 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 7eb4bf92d9a..f02e915c59d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index ba19ac94872..3635a680125 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index adb52d63869..73855c9833c 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 707ab0fcb5f..c8649b00617 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 0796b5b7648..00b15a7e250 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index e1b84fb835f..c83a5469d00 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 10fc28ff5ac..2acaa60f6e7 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 258e0ca6135..74a586bbc03 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index c8b4c62d962..11b6f2909ab 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 6c433390b3a..e7f6707a803 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7d9027e2e1e..02e393392e6 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 2dfd6158cfd..5aee1b4308d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 262df3a32cf..d18aff5d9f0 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index c07e031ff18..c3e1a1bb204 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index b273ef97b00..d0ecabab213 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index a868777969d..2824e6ffdb6 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index ff8cdb0cc82..e78dba3f95e 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index c5c31e0c000..89a441d9c99 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 19890db8649..9b5d62d9fc5 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 844cdecf99f..8dd82d91a31 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 50cff7a85a7..e0d4fbd1f19 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 1292fc35b59..88de492f664 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 519ff461ddf..80293f2202f 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 5ea1ae6326a..d0754a7372f 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 3346f4eb04c..b8374044a84 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 926dbd1f5ce..e17505980a4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 2c494200e6f..8219ee4f256 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index cb6e479e7b7..f1e11c51f01 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 0ffd20f6c50..3a8fae78eb0 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index e42f60061d8..aa5c56f882b 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index bf2da10b208..7bf51d3f37b 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 67d76afd011..9f5d1239e8a 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 826709a596f..376ba2e096e 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 1cf2f14659d..1cc01c12470 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index cdb6eb94a0f..1504391bd74 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index c8a0a6b1d10..37374394a06 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index d7fa858d400..4ce24c410d1 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index dfca533bff5..7ab402ce02b 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 2047192b5b2..53f76634f11 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 9a68d496632..e1081c7e3c8 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 31cd3e6f862..42a799aa554 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 6260c0901e7..668a6830fea 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index be3e79faa0f..64d59799192 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index e788a357456..5c00676c0b2 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 9c70d103097..b51480aae34 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 3b256579813..67799e2eea8 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 07:49+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +38,11 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Geslo je bilo uspešno spremenjeno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." @@ -86,7 +87,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "osebne nastavitve" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Omogočeno" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Onemogočeno" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Spremeni geslo" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" @@ -141,11 +142,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Staro geslo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Trenutno geslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -163,8 +164,8 @@ msgstr "" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "Nastavitve obnavljanja dokumentov so bile posodobljene" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index c254087ec94..a11446a0926 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index e835f2b4aa4..5026134d207 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 254395350c3..b1a18d468a5 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index d1ea66c7486..007381649ce 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index cb7a8b2f14a..bac19715193 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 48866f92c67..fac01f35126 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 1173aa9e396..c32653c1086 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index b59e1672ea5..c8d5052678a 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 673b9345b6d..ca51a60fa34 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 990851e3f2b..7836344e86d 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 843f87b4b14..2af30e5d349 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 671cee2907a..a4bd842432d 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 7f40175fe3f..6b6c2ca8017 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index f3737be676d..01264f0e070 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 9563b6a581d..897d8ad5107 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index acc93a4f25e..da6fe98e273 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 99d25bee2e7..80baec36632 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index e405815f7cb..d5abb116120 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index fd2119406b7..3395790f161 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 6791e29139f..c0445fda7aa 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index d3f477f7929..e4b1506ff99 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index f04371d52ff..c5e4184e070 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index ea161b9e374..e2d4a5c73ac 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 23d50dfc234..ed6cfd0f327 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index a43f58cbd82..6446de912d3 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index dd214946ecb..7581c978982 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 7d36543ab6c..7098f5c2ac5 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index c522bfd38af..ed7d135a6c3 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 6466456e106..e690317c36b 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 25a5e0d6562..675310b67fb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 0d3f39e3eeb..7cd3e31c819 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 0710b6acb0d..032e828c4e5 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 0f47f362854..f7d01ee5047 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 01862e82814..31bf987d3f6 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 244414adf05..8d3173e04e4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 7b767bdd60e..353d14591b6 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index a84c4d0a0a8..659525a737a 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 5344ba5c51f..900b2209548 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 4424fa23e53..a2b3ad473e4 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index df8be782a30..dda6a6339e3 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 594c124bcfd..89718d4286f 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 2d054b1c465..c31758defe0 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b10ad83d2d9..d9e007ee80a 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 511fe56c307..c37eb589824 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index f7be70cdd6f..2e00a6891d8 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index fa019447a56..42870b6b6b5 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 70f7eeefed2..3da76a284d6 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index ab82f9532bb..6e6e4783906 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 1fcc1b13f7d..699cce94b68 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 5b573e7250e..76f1847e40a 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 16fc4f7ddba..2f595b3fe9d 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e3bb913d358..db739ba85bb 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 3137d0afdcf..4207afcfd51 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 315a63e26ca..90ba19ef1bb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 1e22f4b7da9..c5004183190 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c8c62564276..df0d39e194c 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 71106f11536..6f2e9ad664a 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 9300ffc6d0a..e1f89189446 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7ecd830f540..c3384c2cdf0 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 28360882ec3..2f9854b8bd3 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6476759c262..d02d53a2b54 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 7e5ca80be67..ea0db57fa6f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 39bb66e5d38..b1f727195fa 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e1f44e0ec7e..4b6e1d460eb 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 7b152eddd66..f2ee0df7cbd 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 121e631d1b9..6a807467898 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 5c2df225b20..e93c3b7ffa7 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 8329473e3af..0989dbd9cfa 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index cbba1f41792..b17614bd44c 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index ae682aa4560..be96bd4e87f 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 2ae9532843c..c72977f9499 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 741556483fb..f068a117539 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index b4e85d7f7b5..4fe357be5d9 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 28253762688..65b6cd5bd92 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 6326f7139f5..3c9fcdbb03d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index fb2e2e216d5..63aea08ae37 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index b96cc4683b3..6099530aff3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 0fd94367879..42ba932378b 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 15d2e5c62b8..caf73f807b8 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index b9efc62b015..82619800af5 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 03a2c47e099..0d56f719e5e 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index c23bb2e315e..cd5743bfab5 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 53f052cae33..ea01bb0418e 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 842844cd401..46b95ee9f3b 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index a355eb4626a..8bec3375cb1 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 738b5839ff2..3ffb8f09c49 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index d5b5d319433..fcf106f2743 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 16a90863243..26dc5840696 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index b5011acb944..31417d42132 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 811aca80f66..c20c81f0205 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 370a8806022..97e6dba77ae 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 4b24b992c73..2ce5571dffe 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 610914ea2a1..d109fda842e 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index bfe36ecf30f..3cf3f78ade6 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index bc6342b1da0..3ac680bf45e 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index d72ea3f5edb..ece71548a7d 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 888a3128af5..5a78c3b947d 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 3c3cf8b34d8..cef2cb328ba 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index cd94e8a4144..2f52ca8deba 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index df35efcde29..5ba2579182b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index d1dce1da9f7..eb1334a82f4 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 15469440b0d..94e66d87b52 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index a6fc9419931..7434e860ffc 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 4b130127740..1d11dd20576 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index a4c8d129fdb..c71b84999d5 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index f67e5874d21..84a950d0e77 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 4ff03f14066..845e98b9e76 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index c414ac1915e..17f8906dada 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index a653b79dacf..4eb98e767dd 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index da1bb9271ae..5902b97e537 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index f5180756957..2dcd4cbe2e2 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 57dba764c2a..6732d9a5a62 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 591ce747f93..5aafff4af4b 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index ae024660770..c4809f80d08 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 7c48040ec57..3ffa357f7bf 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2d579363b8b..cf859bcc04f 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 881aea33635..2fe5f4dd9c8 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index abe654c88b1..37924fa6220 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 0560ca69980..bd4527b0b3d 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 1e3ca9bbcc9..4f9b8f4464a 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 9a08aea77ac..d6dd4f2e1ab 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 4c2e9855d9b..c374a790f0b 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index c54990d151a..e9d8ec160bd 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index e2853f2f35f..25c1332c839 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 4d537e89661..0ed24005561 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index c87bca5396b..4c0bc76f750 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 8cd3b5d5538..2fc02c0b4f6 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index c1476ad923f..5aaf67f4bd4 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e9161ca7520..82432cc9bb9 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 04b5de8a9e1..192792e641f 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index a8ba2430a2d..702d2308acc 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 466c0f853b5..69b1b4b0fe4 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index cdaa641ec8a..7fc21aaa73e 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 105b73d51de..5ffc2f64184 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index e45bdeb4317..b6c3aeb8972 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 6bcfdab8fca..e7dd0155da3 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index f4b86ca7514..1550437e429 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 05300a3ee5c..ef9523a328a 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:05+0200\n" -"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index f9a6bb35499..c6bc4fc15b9 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-27 02:04+0200\n" -"PO-Revision-Date: 2013-06-26 23:16+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" -- GitLab From 1edf01d09f12843528be3137d6b6595edb9e0ec4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Jun 2013 11:15:08 +0200 Subject: [PATCH 075/215] Fix usage of non existent consts --- lib/log.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/log.php b/lib/log.php index 8c157d003cf..e0b9fe3c696 100644 --- a/lib/log.php +++ b/lib/log.php @@ -41,7 +41,7 @@ class Log { * @param array $context */ public function alert($message, array $context = array()) { - $this->log(self::ALERT, $message, $context); + $this->log(\OC_Log::ERROR, $message, $context); } /** @@ -53,7 +53,7 @@ class Log { * @param array $context */ public function critical($message, array $context = array()) { - $this->log(self::CRITICAL, $message, $context); + $this->log(\OC_Log::ERROR, $message, $context); } /** @@ -87,7 +87,7 @@ class Log { * @param array $context */ public function notice($message, array $context = array()) { - $this->log(self::NOTICE, $message, $context); + $this->log(\OC_Log::INFO, $message, $context); } /** -- GitLab From 7f3ddd43411c9b5b1b26d42751a6dbe416ab5499 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 24 Jun 2013 22:38:05 +0200 Subject: [PATCH 076/215] Skip Test_Archive_TAR in php 5.5 for now --- tests/lib/archive/tar.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php index e66a8740879..d831487b16f 100644 --- a/tests/lib/archive/tar.php +++ b/tests/lib/archive/tar.php @@ -10,6 +10,12 @@ require_once 'archive.php'; if (!OC_Util::runningOnWindows()) { class Test_Archive_TAR extends Test_Archive { + public function setUp() { + if (floatval(phpversion())>=5.5) { + $this->markTestSkipped('php 5.5 changed unpack function.'); + return; + } + } protected function getExisting() { $dir = OC::$SERVERROOT . '/tests/data'; return new OC_Archive_TAR($dir . '/data.tar.gz'); -- GitLab From 42cb77b9821eb032afce7e1b7f233c9ffcd0be41 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Jun 2013 13:24:24 +0200 Subject: [PATCH 077/215] TimedJob: make PhpUnit happy with asserts --- tests/lib/backgroundjob/timedjob.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/lib/backgroundjob/timedjob.php b/tests/lib/backgroundjob/timedjob.php index 0af933afef8..f3c3eb4d0dd 100644 --- a/tests/lib/backgroundjob/timedjob.php +++ b/tests/lib/backgroundjob/timedjob.php @@ -41,6 +41,7 @@ class TimedJob extends \PHPUnit_Framework_TestCase { $this->fail("job should have run"); } catch (JobRun $e) { } + $this->assertTrue(true); } public function testShouldNotRunWithinInterval() { @@ -50,6 +51,7 @@ class TimedJob extends \PHPUnit_Framework_TestCase { } catch (JobRun $e) { $this->fail("job should not have run"); } + $this->assertTrue(true); } public function testShouldNotTwice() { @@ -64,5 +66,6 @@ class TimedJob extends \PHPUnit_Framework_TestCase { $this->fail("job should not have run the second time"); } } + $this->assertTrue(true); } } -- GitLab From 3abeb252d8b8777bce5ae2ec33d1234a77558b98 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Jun 2013 14:37:52 +0200 Subject: [PATCH 078/215] make PHPUnit happy and add asserts --- tests/lib/session/session.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/lib/session/session.php b/tests/lib/session/session.php index 72dee44e7cb..9ce11274c84 100644 --- a/tests/lib/session/session.php +++ b/tests/lib/session/session.php @@ -44,7 +44,9 @@ abstract class Session extends \PHPUnit_Framework_TestCase { } public function testRemoveNonExisting() { + $this->assertFalse($this->instance->exists('foo')); $this->instance->remove('foo'); + $this->assertFalse($this->instance->exists('foo')); } public function testNotExistsAfterClear() { -- GitLab From de66861ef1a440837cc6161eaea21fd3e401570f Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Jun 2013 15:13:57 +0200 Subject: [PATCH 079/215] make phpunit happy - adding asserts --- tests/lib/hooks/basicemitter.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/lib/hooks/basicemitter.php b/tests/lib/hooks/basicemitter.php index f48dc53c563..0eae730d030 100644 --- a/tests/lib/hooks/basicemitter.php +++ b/tests/lib/hooks/basicemitter.php @@ -155,6 +155,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener); $this->emitter->removeListener('Test', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardListener() { @@ -168,6 +170,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener2); $this->emitter->removeListener('Test', 'test'); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardMethod() { @@ -179,6 +183,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->removeListener('Test', null, $listener); $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Test', 'foo'); + + $this->assertTrue(true); } public function testRemoveWildcardScope() { @@ -190,6 +196,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->removeListener(null, 'test', $listener); $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Bar', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardScopeAndMethod() { @@ -203,6 +211,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Test', 'foo'); $this->emitter->emitEvent('Bar', 'foo'); + + $this->assertTrue(true); } /** @@ -219,6 +229,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener2); $this->emitter->removeListener('Test', 'test', $listener1); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -232,6 +244,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'foo', $listener); $this->emitter->removeListener('Test', 'foo', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -245,6 +259,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Bar', 'test', $listener); $this->emitter->removeListener('Bar', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -257,5 +273,7 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener); $this->emitter->removeListener('Bar', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } } -- GitLab From 3b91ce695f784fc68d3bdfff0fe5ed0c37a89aff Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Jun 2013 15:17:54 +0200 Subject: [PATCH 080/215] session_life_time -> session_lifetime default session_lifetime is 24hrs recreation of session is triggered at 50% of the session life time --- config/config.sample.php | 2 +- lib/base.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 9254365e3e2..dfa29f329c4 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -146,7 +146,7 @@ $CONFIG = array( "remember_login_cookie_lifetime" => 60*60*24*15, /* Life time of a session after inactivity */ -"session_life_time" => 60 * 60 * 12, +"session_lifetime" => 60 * 60 * 24, /* Custom CSP policy, changing this will overwrite the standard policy */ "custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *", diff --git a/lib/base.php b/lib/base.php index 7097a376d6e..af54f439155 100644 --- a/lib/base.php +++ b/lib/base.php @@ -315,7 +315,7 @@ class OC { // regenerate session id periodically to avoid session fixation if (!self::$session->exists('SID_CREATED')) { self::$session->set('SID_CREATED', time()); - } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime) { + } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime / 2) { session_regenerate_id(true); self::$session->set('SID_CREATED', time()); } @@ -337,7 +337,7 @@ class OC { * @return int */ private static function getSessionLifeTime() { - return OC_Config::getValue('session_life_time', 60 * 60 * 12); + return OC_Config::getValue('session_lifetime', 60 * 60 * 24); } public static function getRouter() { -- GitLab From 125f9f4221d4c9c1d4ae653758f2bfa6b92ed9c1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Jun 2013 15:34:25 +0200 Subject: [PATCH 081/215] move storage wrappers to their own namespace --- lib/files/storage/{ => wrapper}/wrapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename lib/files/storage/{ => wrapper}/wrapper.php (99%) diff --git a/lib/files/storage/wrapper.php b/lib/files/storage/wrapper/wrapper.php similarity index 99% rename from lib/files/storage/wrapper.php rename to lib/files/storage/wrapper/wrapper.php index 78892a564c4..802c8ea0492 100644 --- a/lib/files/storage/wrapper.php +++ b/lib/files/storage/wrapper/wrapper.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -namespace OC\Files\Storage; +namespace OC\Files\Storage\Wrapper; class Wrapper implements Storage { /** -- GitLab From 6ad7a0336f58685f18454fd622395cf25d6908c1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 26 Jun 2013 21:40:31 +0200 Subject: [PATCH 082/215] Oracle doesn't know & as bitwise AND Conflicts: lib/public/share.php --- lib/public/share.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index f40cd0d77fa..304cb7239eb 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -662,13 +662,15 @@ class Share { // Remove the permissions for all reshares of this item if (!empty($ids)) { $ids = "'".implode("','", $ids)."'"; - // the binary operator & works on sqlite, mysql, postgresql and mssql - $sql = 'UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'; - if (\OC_Config::getValue('dbtype', 'sqlite') === 'oci') { - // guess which dbms does not handle & and uses a function for this - $sql = 'UPDATE `*PREFIX*share` SET `permissions` = BITAND(`permissions`,?) WHERE `id` IN ('.$ids.')'; + // TODO this should be done with Doctrine platform objects + if (\OC_Config::getValue( "dbtype") === 'oci') { + $andOp = 'BITAND(`permissions`, ?)'; + } else { + $andOp = '`permissions` & ?'; } - \OC_DB::executeAudited($sql, array($permissions)); + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp + .' WHERE `id` IN ('.$ids.')'); + $query->execute(array($permissions)); } } } -- GitLab From f726de3cabfd67b6aa2ab42ad27eb2fd90e84e27 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Jun 2013 16:49:25 +0200 Subject: [PATCH 083/215] for now we disable public upload in case encryption is enabled --- apps/files_sharing/public.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fa8c25fc98d..ef86013b3e7 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -147,7 +147,11 @@ if (isset($path)) { $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path)); $tmpl->assign('fileTarget', basename($linkItem['file_target'])); $tmpl->assign('dirToken', $linkItem['token']); - $tmpl->assign('allowPublicUploadEnabled', (($linkItem['permissions'] & OCP\PERMISSION_CREATE) ? true : false )); + $allowPublicUploadEnabled = (($linkItem['permissions'] & OCP\PERMISSION_CREATE) ? true : false ); + if (\OCP\App::isEnabled('files_encryption')) { + $allowPublicUploadEnabled = false; + } + $tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); -- GitLab From 8ca0a957add3b01efa5bed3762823fe9449414cf Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Jun 2013 17:25:10 +0200 Subject: [PATCH 084/215] Allow setting defaults and requirements for the api route --- lib/api.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/api.php b/lib/api.php index fc76836995b..31f3f968d9b 100644 --- a/lib/api.php +++ b/lib/api.php @@ -67,6 +67,8 @@ class OC_API { OC::getRouter()->useCollection('ocs'); OC::getRouter()->create($name, $url) ->method($method) + ->defaults($defaults) + ->requirements($requirements) ->action('OC_API', 'call'); self::$actions[$name] = array(); } -- GitLab From 22d759964f120395cae67319e3d1e03f7ae4006b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Jun 2013 17:25:36 +0200 Subject: [PATCH 085/215] Use raw PathInfo for matching urls --- ocs/v1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocs/v1.php b/ocs/v1.php index af83a56ff14..1c7d1c89768 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -26,7 +26,7 @@ use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { - OC::getRouter()->match('/ocs'.$_SERVER['PATH_INFO']); + OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); } catch (ResourceNotFoundException $e) { OC_OCS::notFound(); } catch (MethodNotAllowedException $e) { -- GitLab From a7c70915d592cd3cc06c6dc86ba3d2707d000871 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Jun 2013 18:18:12 +0200 Subject: [PATCH 086/215] fix storage wrapper namespaces --- lib/files/storage/wrapper/wrapper.php | 2 +- tests/lib/files/mount/mount.php | 4 ++-- tests/lib/files/storage/wrapper.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/files/storage/wrapper/wrapper.php b/lib/files/storage/wrapper/wrapper.php index 802c8ea0492..4feb0520f12 100644 --- a/lib/files/storage/wrapper/wrapper.php +++ b/lib/files/storage/wrapper/wrapper.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage\Wrapper; -class Wrapper implements Storage { +class Wrapper implements \OC\Files\Storage\Storage { /** * @var \OC\Files\Storage\Storage $storage */ diff --git a/tests/lib/files/mount/mount.php b/tests/lib/files/mount/mount.php index aa98db856f4..b057204ad35 100644 --- a/tests/lib/files/mount/mount.php +++ b/tests/lib/files/mount/mount.php @@ -10,7 +10,7 @@ namespace Test\Files\Mount; use OC\Files\Storage\Loader; -use OC\Files\Storage\Wrapper; +use OC\Files\Storage\Wrapper\Wrapper; class Mount extends \PHPUnit_Framework_TestCase { public function testFromStorageObject() { @@ -41,6 +41,6 @@ class Mount extends \PHPUnit_Framework_TestCase { ->disableOriginalConstructor() ->getMock(); $mount = new \OC\Files\Mount\Mount($storage, '/foo', array(), $loader); - $this->assertInstanceOf('\OC\Files\Storage\Wrapper', $mount->getStorage()); + $this->assertInstanceOf('\OC\Files\Storage\Wrapper\Wrapper', $mount->getStorage()); } } diff --git a/tests/lib/files/storage/wrapper.php b/tests/lib/files/storage/wrapper.php index 8452949a723..2794a0a6263 100644 --- a/tests/lib/files/storage/wrapper.php +++ b/tests/lib/files/storage/wrapper.php @@ -17,7 +17,7 @@ class Wrapper extends Storage { public function setUp() { $this->tmpDir = \OC_Helper::tmpFolder(); $storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir)); - $this->instance = new \OC\Files\Storage\Wrapper(array('storage' => $storage)); + $this->instance = new \OC\Files\Storage\Wrapper\Wrapper(array('storage' => $storage)); } public function tearDown() { -- GitLab From 156e72a0c465bc70f079933a6c5b376ca6552caa Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Jun 2013 19:41:28 +0200 Subject: [PATCH 087/215] add option to clear the files in the static streamwrapper --- lib/files/stream/staticstream.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/files/stream/staticstream.php b/lib/files/stream/staticstream.php index 7725a6a5a04..1e3879a4e82 100644 --- a/lib/files/stream/staticstream.php +++ b/lib/files/stream/staticstream.php @@ -26,6 +26,10 @@ class StaticStream { public function stream_flush() { } + public static function clear() { + self::$data = array(); + } + public function stream_open($path, $mode, $options, &$opened_path) { switch ($mode[0]) { case 'r': -- GitLab From dc0ebe90077caeb67346ab96950f7305737a9de6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Jun 2013 19:54:16 +0200 Subject: [PATCH 088/215] fix is_file and is_dir for the static streamwrapper --- lib/files/stream/staticstream.php | 51 ++++--------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/lib/files/stream/staticstream.php b/lib/files/stream/staticstream.php index 1e3879a4e82..45b1a7a81f8 100644 --- a/lib/files/stream/staticstream.php +++ b/lib/files/stream/staticstream.php @@ -9,6 +9,8 @@ namespace OC\Files\Stream; class StaticStream { + const MODE_FILE = 0100000; + public $context; protected static $data = array(); @@ -98,36 +100,7 @@ class StaticStream { } public function stream_stat() { - $size = strlen(self::$data[$this->path]); - $time = time(); - return array( - 0 => 0, - 'dev' => 0, - 1 => 0, - 'ino' => 0, - 2 => 0777, - 'mode' => 0777, - 3 => 1, - 'nlink' => 1, - 4 => 0, - 'uid' => 0, - 5 => 0, - 'gid' => 0, - 6 => '', - 'rdev' => '', - 7 => $size, - 'size' => $size, - 8 => $time, - 'atime' => $time, - 9 => $time, - 'mtime' => $time, - 10 => $time, - 'ctime' => $time, - 11 => -1, - 'blksize' => -1, - 12 => -1, - 'blocks' => -1, - ); + return $this->url_stat($this->path); } public function stream_tell() { @@ -161,34 +134,22 @@ class StaticStream { if (isset(self::$data[$path])) { $size = strlen(self::$data[$path]); $time = time(); - return array( - 0 => 0, + $data = array( 'dev' => 0, - 1 => 0, 'ino' => 0, - 2 => 0777, - 'mode' => 0777, - 3 => 1, + 'mode' => self::MODE_FILE | 0777, 'nlink' => 1, - 4 => 0, 'uid' => 0, - 5 => 0, 'gid' => 0, - 6 => '', 'rdev' => '', - 7 => $size, 'size' => $size, - 8 => $time, 'atime' => $time, - 9 => $time, 'mtime' => $time, - 10 => $time, 'ctime' => $time, - 11 => -1, 'blksize' => -1, - 12 => -1, 'blocks' => -1, ); + return array_values($data) + $data; } return false; } -- GitLab From a0d83771094df4d3a7d27ee72b9abb4a6854b604 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Jun 2013 19:59:04 +0200 Subject: [PATCH 089/215] better unit tests for static stream wrapper --- tests/lib/files/stream/staticstream.php | 68 +++++++++++++++++++++++++ tests/lib/streamwrappers.php | 12 ----- 2 files changed, 68 insertions(+), 12 deletions(-) create mode 100644 tests/lib/files/stream/staticstream.php diff --git a/tests/lib/files/stream/staticstream.php b/tests/lib/files/stream/staticstream.php new file mode 100644 index 00000000000..d55086196a0 --- /dev/null +++ b/tests/lib/files/stream/staticstream.php @@ -0,0 +1,68 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Stream; + +class StaticStream extends \PHPUnit_Framework_TestCase { + + private $sourceFile; + private $sourceText; + + public function __construct() { + $this->sourceFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; + $this->sourceText = file_get_contents($this->sourceFile); + } + + public function tearDown() { + \OC\Files\Stream\StaticStream::clear(); + } + + public function testContent() { + file_put_contents('static://foo', $this->sourceText); + $this->assertEquals($this->sourceText, file_get_contents('static://foo')); + } + + public function testMultipleFiles() { + file_put_contents('static://foo', $this->sourceText); + file_put_contents('static://bar', strrev($this->sourceText)); + $this->assertEquals($this->sourceText, file_get_contents('static://foo')); + $this->assertEquals(strrev($this->sourceText), file_get_contents('static://bar')); + } + + public function testOverwrite() { + file_put_contents('static://foo', $this->sourceText); + file_put_contents('static://foo', 'qwerty'); + $this->assertEquals('qwerty', file_get_contents('static://foo')); + } + + public function testIsFile() { + $this->assertFalse(is_file('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertTrue(is_file('static://foo')); + } + + public function testIsDir() { + $this->assertFalse(is_dir('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertFalse(is_dir('static://foo')); + } + + public function testFileType() { + file_put_contents('static://foo', $this->sourceText); + $this->assertEquals('file', filetype('static://foo')); + } + + public function testUnlink() { + $this->assertFalse(file_exists('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertTrue(file_exists('static://foo')); + unlink('static://foo'); + clearstatcache(); + $this->assertFalse(file_exists('static://foo')); + } +} diff --git a/tests/lib/streamwrappers.php b/tests/lib/streamwrappers.php index c7e51ccfa48..d15b712139d 100644 --- a/tests/lib/streamwrappers.php +++ b/tests/lib/streamwrappers.php @@ -33,18 +33,6 @@ class Test_StreamWrappers extends PHPUnit_Framework_TestCase { $this->assertEquals(count($items), count($result)); } - public function testStaticStream() { - $sourceFile = OC::$SERVERROOT . '/tests/data/lorem.txt'; - $staticFile = 'static://test'; - $this->assertFalse(file_exists($staticFile)); - file_put_contents($staticFile, file_get_contents($sourceFile)); - $this->assertTrue(file_exists($staticFile)); - $this->assertEquals(file_get_contents($sourceFile), file_get_contents($staticFile)); - unlink($staticFile); - clearstatcache(); - $this->assertFalse(file_exists($staticFile)); - } - public function testCloseStream() { //ensure all basic stream stuff works $sourceFile = OC::$SERVERROOT . '/tests/data/lorem.txt'; -- GitLab From 7b6fcddbc5314e7401e4f5579853aa6353d462f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 18 Jun 2013 18:24:48 +0200 Subject: [PATCH 090/215] use executeAudited, add table name to assert message, skip schema changing test on oracle --- tests/lib/dbschema.php | 87 +++++++++++++++++++++--------------------- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 59f203993ef..5d52db6a5ab 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -7,9 +7,8 @@ */ class Test_DBSchema extends PHPUnit_Framework_TestCase { - protected static $schema_file = 'static://test_db_scheme'; - protected static $schema_file2 = 'static://test_db_scheme2'; - protected $test_prefix; + protected $schema_file = 'static://test_db_scheme'; + protected $schema_file2 = 'static://test_db_scheme2'; protected $table1; protected $table2; @@ -20,19 +19,20 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { $r = '_'.OC_Util::generate_random_bytes('4').'_'; $content = file_get_contents( $dbfile ); $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content ); - file_put_contents( self::$schema_file, $content ); + file_put_contents( $this->schema_file, $content ); $content = file_get_contents( $dbfile2 ); $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content ); - file_put_contents( self::$schema_file2, $content ); + file_put_contents( $this->schema_file2, $content ); - $this->test_prefix = $r; - $this->table1 = $this->test_prefix.'cntcts_addrsbks'; - $this->table2 = $this->test_prefix.'cntcts_cards'; + $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); + + $this->table1 = $prefix.$r.'cntcts_addrsbks'; + $this->table2 = $prefix.$r.'cntcts_cards'; } public function tearDown() { - unlink(self::$schema_file); - unlink(self::$schema_file2); + unlink($this->schema_file); + unlink($this->schema_file2); } // everything in one test, they depend on each other @@ -47,13 +47,19 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { } public function doTestSchemaCreating() { - OC_DB::createDbFromStructure(self::$schema_file); + OC_DB::createDbFromStructure($this->schema_file); $this->assertTableExist($this->table1); $this->assertTableExist($this->table2); } public function doTestSchemaChanging() { - OC_DB::updateDbFromStructure(self::$schema_file2); + if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { + $this->markTestSkipped( + // see http://abhijitbashetti.blogspot.de/2011/10/converting-varchar2-to-clob-and-clob-to.html + 'Oracle does not simply ALTER a VARCHAR into a CLOB.' + ); + } + OC_DB::updateDbFromStructure($this->schema_file2); $this->assertTableExist($this->table2); } @@ -66,67 +72,62 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { } public function doTestSchemaRemoving() { - OC_DB::removeDBStructure(self::$schema_file); + OC_DB::removeDBStructure($this->schema_file); $this->assertTableNotExist($this->table1); $this->assertTableNotExist($this->table2); } public function tableExist($table) { - $table = '*PREFIX*' . $table; switch (OC_Config::getValue( 'dbtype', 'sqlite' )) { case 'sqlite': case 'sqlite3': $sql = "SELECT name FROM sqlite_master " - . "WHERE type = 'table' AND name != 'sqlite_sequence' " - . "AND name != 'geometry_columns' AND name != 'spatial_ref_sys' " - . "UNION ALL SELECT name FROM sqlite_temp_master " - . "WHERE type = 'table' AND name = '".$table."'"; - $query = OC_DB::prepare($sql); - $result = $query->execute(array()); - $exists = $result && $result->fetchOne(); + . "WHERE type = 'table' AND name = ? " + . "UNION ALL SELECT name FROM sqlite_temp_master " + . "WHERE type = 'table' AND name = ?"; + $result = \OC_DB::executeAudited($sql, array($table, $table)); break; case 'mysql': - $sql = 'SHOW TABLES LIKE "'.$table.'"'; - $query = OC_DB::prepare($sql); - $result = $query->execute(array()); - $exists = $result && $result->fetchOne(); + $sql = 'SHOW TABLES LIKE ?'; + $result = \OC_DB::executeAudited($sql, array($table)); break; case 'pgsql': - $sql = "SELECT tablename AS table_name, schemaname AS schema_name " - . "FROM pg_tables WHERE schemaname NOT LIKE 'pg_%' " - . "AND schemaname != 'information_schema' " - . "AND tablename = '".$table."'"; - $query = OC_DB::prepare($sql); - $result = $query->execute(array()); - $exists = $result && $result->fetchOne(); + $sql = 'SELECT tablename AS table_name, schemaname AS schema_name ' + . 'FROM pg_tables WHERE schemaname NOT LIKE \'pg_%\' ' + . 'AND schemaname != \'information_schema\' ' + . 'AND tablename = ?'; + $result = \OC_DB::executeAudited($sql, array($table)); break; case 'oci': - $sql = 'SELECT table_name FROM user_tables WHERE table_name = ?'; + $sql = 'SELECT TABLE_NAME FROM USER_TABLES WHERE TABLE_NAME = ?'; $result = \OC_DB::executeAudited($sql, array($table)); - $exists = (bool)$result->fetchOne(); //oracle uses MDB2 and returns null break; case 'mssql': - $sql = "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '{$table}'"; - $query = OC_DB::prepare($sql); - $result = $query->execute(array()); - $exists = $result && $result->fetchOne(); + $sql = 'SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ?'; + $result = \OC_DB::executeAudited($sql, array($table)); break; } - return $exists; + + $name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work? + OC_DB::raiseExceptionOnError($name); + if ($name === $table) { + return true; + } else { + return false; + } } public function assertTableExist($table) { - $this->assertTrue($this->tableExist($table)); + $this->assertTrue($this->tableExist($table), 'Table ' . $table . ' does not exist'); } public function assertTableNotExist($table) { $type=OC_Config::getValue( "dbtype", "sqlite" ); if( $type == 'sqlite' || $type == 'sqlite3' ) { // sqlite removes the tables after closing the DB - } - else { - $this->assertFalse($this->tableExist($table)); + } else { + $this->assertFalse($this->tableExist($table), 'Table ' . $table . ' exists.'); } } } -- GitLab From e62eb2e8d1937f1708ce7efdd6ab8a31e12c6f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 12:31:23 +0300 Subject: [PATCH 091/215] correctly handle error results of PDO and MDB2 backends --- lib/db.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/db.php b/lib/db.php index 4d6788f2bda..5e624bf30b9 100644 --- a/lib/db.php +++ b/lib/db.php @@ -962,11 +962,14 @@ class OC_DB { * @return bool */ public static function isError($result) { - if(self::$backend==self::BACKEND_PDO and $result === false) { + //PDO returns false on error (and throws an exception) + if (self::$backend===self::BACKEND_PDO and $result === false) { return true; - }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) { + } else + //MDB2 returns an MDB2_Error object + if (self::$backend===self::BACKEND_MDB2 and PEAR::isError($result)) { return true; - }else{ + } else { return false; } } -- GitLab From 4bbdd67a22fd5ac0efc6b8c9dc3e024a0af45c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 16:58:49 +0200 Subject: [PATCH 092/215] remove wrong check here --- tests/lib/dbschema.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 5d52db6a5ab..103909e2e25 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -110,7 +110,6 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { } $name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work? - OC_DB::raiseExceptionOnError($name); if ($name === $table) { return true; } else { -- GitLab From 66e1eaac9379e16bb0c9e60b2794b03bda3b9eec Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 27 Jun 2013 16:48:09 +0200 Subject: [PATCH 093/215] isError should detect a PEAR_Error even if the backend is PDO. This can happen on errors during schema migration - which is always done with MDB2 --- lib/db.php | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/lib/db.php b/lib/db.php index 5e624bf30b9..515563b78e1 100644 --- a/lib/db.php +++ b/lib/db.php @@ -962,21 +962,21 @@ class OC_DB { * @return bool */ public static function isError($result) { + //MDB2 returns an MDB2_Error object + if (class_exists('PEAR') === true && PEAR::isError($result)) { + return true; + } //PDO returns false on error (and throws an exception) if (self::$backend===self::BACKEND_PDO and $result === false) { return true; - } else - //MDB2 returns an MDB2_Error object - if (self::$backend===self::BACKEND_MDB2 and PEAR::isError($result)) { - return true; - } else { - return false; } + + return false; } /** * check if a result is an error and throws an exception, works with MDB2 and PDOException * @param mixed $result - * @param string message + * @param string $message * @return void * @throws DatabaseException */ @@ -992,12 +992,15 @@ class OC_DB { } public static function getErrorCode($error) { - if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { - $code = $error->getCode(); - } elseif ( self::$backend==self::BACKEND_PDO and self::$PDO ) { - $code = self::$PDO->errorCode(); + if ( class_exists('PEAR') === true && PEAR::isError($error) ) { + /** @var $error PEAR_Error */ + return $error->getCode(); + } + if ( self::$backend==self::BACKEND_PDO and self::$PDO ) { + return self::$PDO->errorCode(); } - return $code; + + return -1; } /** * returns the error code and message as a string for logging @@ -1006,23 +1009,24 @@ class OC_DB { * @return string */ public static function getErrorMessage($error) { - if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { + if ( class_exists('PEAR') === true && PEAR::isError($error) ) { $msg = $error->getCode() . ': ' . $error->getMessage(); $msg .= ' (' . $error->getDebugInfo() . ')'; - } elseif (self::$backend==self::BACKEND_PDO and self::$PDO) { + + return $msg; + } + if (self::$backend==self::BACKEND_PDO and self::$PDO) { $msg = self::$PDO->errorCode() . ': '; $errorInfo = self::$PDO->errorInfo(); if (is_array($errorInfo)) { $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', '; $msg .= 'Driver Message = '.$errorInfo[2]; - }else{ - $msg = ''; } - }else{ - $msg = ''; + return $msg; } - return $msg; + + return ''; } /** -- GitLab From c80e76720f4e65a5f7af31f67d70ec66019bcb68 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Jun 2013 16:07:22 +0200 Subject: [PATCH 094/215] Going from text to clob is not something we do. Also Oracle DB has problems with this, see http://abhijitbashetti.blogspot.de/2011/10/converting-varchar2-to-clob-and-clob-to.html --- tests/data/db_structure2.xml | 3 ++- tests/lib/dbschema.php | 6 ------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index fc6fe0bba7d..6f12f81f477 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -49,8 +49,9 @@ description - clob + text false + 1024 diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 103909e2e25..c2e55eabf4b 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -53,12 +53,6 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { } public function doTestSchemaChanging() { - if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { - $this->markTestSkipped( - // see http://abhijitbashetti.blogspot.de/2011/10/converting-varchar2-to-clob-and-clob-to.html - 'Oracle does not simply ALTER a VARCHAR into a CLOB.' - ); - } OC_DB::updateDbFromStructure($this->schema_file2); $this->assertTableExist($this->table2); } -- GitLab From d110e60316f7dd28a2b5876e8911f983fea0883c Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Fri, 28 Jun 2013 21:53:56 +0300 Subject: [PATCH 095/215] Hide a ghost image on the apps management page --- settings/js/apps.js | 5 +++++ settings/templates/apps.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/settings/js/apps.js b/settings/js/apps.js index 9c1604cfcd9..bdeddfb84c2 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -20,6 +20,11 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('span.score').html(app.score); page.find('p.description').text(app.description); page.find('img.preview').attr('src', app.preview); + if (app.preview && app.preview.length) { + page.find('img.preview').show(); + } else { + page.find('img.preview').hide(); + } page.find('small.externalapp').attr('style', 'visibility:visible'); page.find('span.author').text(app.author); page.find('span.licence').text(app.licence); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 0903b9bd5c4..d60fd82f917 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -34,7 +34,7 @@ class="version">

    - +
    -

    - '); ?> - +

    +

    diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 4173212dfa3..ec73ad5456c 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -43,10 +43,7 @@

    - - - - '); ?> -

    + +

    diff --git a/lib/defaults.php b/lib/defaults.php index 7dc6fbd0ada..9043c04e7b6 100644 --- a/lib/defaults.php +++ b/lib/defaults.php @@ -71,4 +71,26 @@ class OC_Defaults { } } -} \ No newline at end of file + public static function getShortFooter() { + if (OC_Util::getEditionString() === '') { + $footer = "" .self::getEntity() . "". + ' – ' . self::getSlogan(); + } else { + $footer = "© 2013 ".self::getEntity()."". + " – " . self::getSlogan(); + } + + return $footer; + } + + public static function getLongFooter() { + if (OC_Util::getEditionString() === '') { + $footer = self::getShortFooter(); + } else { + $footer = "© 2013 ".self::getEntity()."". + "
    " . self::getSlogan(); + } + return $footer; + } + +} diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 1ed3f6ef47f..0eba6862e6b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -230,12 +230,16 @@ endfor;?> -