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 e1d8b60d31..533b11a6e5 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'); 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 533b11a6e5..316acda513 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'); 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 c70903cba5..4987e50d1c 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -162,7 +162,7 @@

+ value="" />

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 0000000000..5939faec56 --- /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 0000000000..8452949a72 --- /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); + } +} 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 69b8285ab4..d25a7b3be6 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 0000000000..7330cae4cc --- /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); + } +} 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 | 171 ++++++++++++++++++++++++++++++++++----------- 2 files changed, 202 insertions(+), 41 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 0000000000..4e6642b6a2 --- /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 3f3334801e..f7a68c3068 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); + /** + * 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); + } + + /** + * 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); + } + + /** + * 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 { - return true; + $app = 'no app in context'; } - } - - // 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); - + OC_Log::write($app, $message, $level); } } + +require_once __DIR__.'/legacy/'.basename(__FILE__); 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 f7a68c3068..6353693a28 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); } } 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 6353693a28..d83f88c1df 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__); 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 d83f88c1df..3bedcd4ed3 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 { 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 3bedcd4ed3..fc190f1378 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); } /** 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 fc190f1378..442872af9c 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'])) { 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 7082f0b2af..b0af062052 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'; } } 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 46aab7ebf0..16ae426417 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 ); 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 156799f086..898786a615 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 } 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 eadd8a93fa..ce89c5c23f 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 d25a7b3be6..17b0055ee8 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 7330cae4cc..2572ef443b 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; } } 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 5939faec56..78892a564c 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 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 0daa863e79..a7b1da57c1 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 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 0000000000..aa98db856f --- /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()); + } +} 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 a7b1da57c1..3d7d5abf8f 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); } 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 e19a35bbc5..c6663836fd 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 c2a4b9c267..f7052ef80b 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 23e5761ddd..2b90a11743 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 3cb4d3dd15..55db625a33 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() { 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 4d8380eb9a..aa5f53c08e 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'])) { 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 40a17a4287..7100b8c290 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 3e8d26c978..0000000000 --- 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 ef564bfd48..08ea381f37 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,65 @@ - - - - + + + + + image/svg+xml + + + + + + + + + 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 691642811b..82119a5951 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 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 2c63daac03..6e8a4bd7f6 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,8 +1,96 @@ - - - - - - + + + + + + + image/svg+xml + + + + + + + + + + + + + + + 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` 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 82119a5951..307ac743a3 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$ 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 + + + + + + + + + + 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 7100b8c290..6c9d00114a 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 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 307ac743a3..87dfea491e 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 cb5edaa2c9..66ec36df86 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'))?> 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 d684905bf9..b08fd73ce1 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 0e22f26ae8..fb3e05e66b 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')); + } } 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 26e9595e86..fd4870974f 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); 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 abb1617c25..5dd65e85a4 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); 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 5dd65e85a4..123c87eb5f 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; } 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 | 137 +++++++++++++++++++++++------------------------------ 1 file changed, 58 insertions(+), 79 deletions(-) diff --git a/lib/db.php b/lib/db.php index a6b81aaba6..66900f46be 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); + private static function fixLimitClauseForMSSQL($query) { + $limitLocation = stripos ($query, "LIMIT"); - // check for another parameter - if (stripos ($offset, ',') === false) { - // no more parameters - $offset = 0; - $total = intval ($offset); - } else { - // found another parameter - $offset = intval ($offset); + if ( $limitLocation === false ) { + return $query; + } - $total = substr ($query, $limitLocation + 5); - $total = substr ($total, stripos ($total, ',')); + // 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); - $total = substr ($total, 0, stripos ($total, ' ')); - $total = intval ($total); - } + // check for another parameter + if (stripos ($offset, ',') === false) { + // no more parameters + $offset = 0; + $total = intval ($offset); + } else { + // found another parameter + $offset = intval ($offset); - $query = trim (substr ($query, 0, $limitLocation)); + $total = substr ($query, $limitLocation + 5); + $total = substr ($total, stripos ($total, ',')); - 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'; + $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; + } - 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 */ 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 123c87eb5f..20ad2405fc 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); } 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 20ad2405fc..f5dffd970d 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'])) { 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 6db768d9a4..250746e166 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 08ea381f37..8024d402a8 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 6e8a4bd7f6..c01f2c113e 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,96 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - + + 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 a315c640d1..1860a55fc8 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); 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 0000000000..0e29edbba3 --- /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"; +} 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 32bca2fc69..c398a0246e 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 860a7e2318..55f760e763 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 fe07d244c7..de957a7488 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 edf31a623a..b40c59c04d 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 115c42f303..d6e2b4fbc0 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 a178417fdb..c7c29dfd6e 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 9e2425a55f..bdb9ab4a5d 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 1ab26d97a9..4f23c0685f 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 57b7efd1c3..02611d5ea5 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 1e5155943c..619e35eacd 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 9f4c03a001..cf98a316b2 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 249d45f901..061e87596f 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 6e51290354..4272114999 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 642bf755b8..a75fe8b7ce 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 0b57dedfe3..84288fa538 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 e028666c79..6d547cbb86 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 16edb48416..f82d357fc1 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 f03c0dc869..1f26904e05 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 685bf7157b..a1b42385e2 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 227bdd2850..864c9a197f 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 ffd9f2cd79..4d58cb46e6 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 3001c3629a..e99376a69d 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 3b20eede62..42dca32f47 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 9cb201fab4..c06bbc6783 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 6eb90fd311..aef49cdf19 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 33c88cc561..d261ab9829 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 66dbd4471b..e778129e05 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 01cccc581b..35eea28854 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 eb11548ec0..8313a69159 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 29626c5441..65c292ce75 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 dd918d1123..117df69d65 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 a342076a78..60701995dd 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 b2eb2d5f82..123411a7b0 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 4b733e31a1..117dbe4950 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 7fc48cb89f..9e3f24edcc 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 59c0d2c393..9598ee3976 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 0423b864e0..98378d8329 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 6c654304f0..c63c411cb9 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 3eeced90d1..8b6e5f3c38 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 68ffe77930..d4bf2b7854 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 e6f87f1bf1..3848eb6d5c 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 8649fdc22e..55c2c697de 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 48b0c4694b..fc3699d5f1 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 c1368e9015..2a07fc7987 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 4d26d2c62c..6f9d2b6878 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 561d17f649..4a531ca226 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 298c44e40d..04aa08729f 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 697fe7e8b8..25b7499250 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 050f7ef1ed..0345e79343 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 50d0312d54..64dc2bb5c6 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 e018fb2e1e..5c9984da1c 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 c7b59395d2..6d6121654a 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 14407b758e..1377bf961f 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 6dbf0f2bb9..ca9de6f628 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 e5f7e36529..71aa65239b 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 06f7ea0740..a15a226c95 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 5599682069..c377f419e9 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 1f15ca7f2f..4cade56a28 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 ac9194b1d0..18dd68113d 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 2a80c15787..581beb4cd1 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 7899539b41..75efc18232 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 6812c76f9d..0083291762 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 a6544b415a..c003ef95c6 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 ca29a3671b..f2c9aed079 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 879319a00c..5b2e8e6384 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 fefd288713..0ff8d02217 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 6ad12b3d1e..576421b685 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 f85f8027ca..dc43b611af 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 6e7c423c69..2bc71f7779 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 eb08dedc15..0b08d3ec66 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 e265219bdc..42eece2f04 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 103dcb089c..96b220f783 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 55088e34de..36b3bef467 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 25732ad809..7058736021 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 a90de2e571..926b29e9e4 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 579da15131..56b022398e 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 e91129213f..5ed822aa07 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 f65b7ec078..66c78d3392 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 d5d3d51436..81e8c56df1 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 c76e96d718..82015f9334 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 99d133916e..2d51878320 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 500d191aa2..e85671da2b 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 fee389f229..dac0bd47d1 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 c14015da6b..9a560f8a21 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 885b711b10..4a20f56c6d 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 3a2ef18fa6..a6994d65cc 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 6c3b85317d..657197abef 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 df6428d88d..3b851c78bf 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 42e51d1756..a4f6c10fb0 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 8177b19960..cb87813875 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 5777cdd332..f01566f827 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 971503a9de..b64e785658 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 85c4e68902..05cb595c9c 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 64c09e7b0a..15649d93cc 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 c4bcc470d6..e953e2d945 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 1902b75b3f..29a7224780 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 4a62c91aaf..263a4e6717 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 bc7a007467..0cfe0c46b4 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 7e63211cb9..3a3c6f5e99 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 564f7fe77e..2582a5201b 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 7f61b3cd18..b5bc48adc4 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 ecd2d2531b..24ddc57c9c 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 3950482a67..b20c0aba34 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 6d368d5c28..d018c1b5cf 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 09b89948f7..1a7a0c6308 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 fbd62a0bc3..d51c906e21 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 210deed54a..1a865b450c 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 f9a6e8e48a..b8de0fa2ec 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 fb06864857..df8a253c96 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 a65c6938b4..c8b38554ec 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 cd1d016942..0efadedbd2 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 565fcee07d..2743963802 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 7edad54696..26a994f782 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 850bcc9e20..ee631b2e6b 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 068c59e562..a17219effa 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 c1bf93bc50..8ff982f35c 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 ed5d175f00..05732a0ea8 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 39709cdce6..628bc4630b 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 081a6640bd..f17a24269c 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 668c1dca97..5fae1f5ab6 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 dad362710e..71a56641ff 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 498d63c004..6ac8b61089 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 54f79b7a5e..f51ede8a40 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 292b70934d..139d9a427c 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 192c4db4f9..d2ca767e09 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 8bbc22cf87..e0bc61f672 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 358110611c..23daa532bd 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 0dfc03cae2..89dd632e41 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 c515b57540..611afc6aeb 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 5fced55beb..9bc2bea3ff 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 8c817c3254..4d628119af 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 a755f4f566..3863cf9e72 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 46e36787c1..6a8fd0b9f5 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 51503965d0..ce3accee37 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 4b4da32072..7c55891d3c 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 b51da7d09e..9eee6e8907 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 be75117593..7aedd0589b 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 d85978f5eb..f69eab70d2 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 70a62b2d7f..758e57adcb 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 b320e403df..84f5bcbcd3 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 2e9420e935..a86151e8b8 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 2f586069dd..b0f95a5aee 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 ada28baaae..b79395deed 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 660d77a888..b088352a08 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 4a6ea20c4b..36a6581e47 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 9a6e447854..f6fb2dafb1 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 554adaf2cb..ae2b0b9a4f 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 2e1450f94f..be9698ba7f 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 c3beef89fe..06e5578a19 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 5527be6de9..989f270e49 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 01fdc6ac34..72505e98eb 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 715f16fa91..6ebb3eb0e1 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 b830804372..cc3b05d9a3 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 59c1ad2fa4..3552cb7818 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 9d74f39066..4ab7db41a6 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 48147dec37..ee8cef6fef 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 736e3ad3ea..bb31bc0fcf 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 efdce0acdc..2aabdb2b0c 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 81c1b0ce8a..5f19076e26 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 c04e9ab68b..a20319aebd 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 268f1c190b..1b6b61071c 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 b1ab85d6ad..60d2b7d971 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 d696d30b3b..a416f26a93 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 6fba6c3e39..0d54c67f7d 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 42426e1b54..e5d5c76590 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 fc61812aa4..3b0b408ffa 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 0a87f1303c..e85c780f7e 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 085aafb560..3715e6bd32 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 43e7d6aa0d..3df47099d8 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 ba3e62ad63..e96a80b4d6 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 21dcf04d1b..d5ad04c08d 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 af204c0f37..be362ff784 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 102b6ef250..588600f790 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 d6ce36cf68..c253f00193 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 66ef8f4764..652f46b6e9 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 da482a2ddf..555a98e65d 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 036a93820b..3b9075a160 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 a5db5b38d2..3d67c200fb 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 1a3633fd51..f372272409 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 08361ccdaa..75bfa8d5ce 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 ee230d1dde..56651e4d4b 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 cb1e632bd8..1d3f6d4086 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 36f80d4d0e..971df918c1 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 c7b8aaf2b2..febc9de51e 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 174e4883cd..4c60a8191a 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 dc153cda44..138501851c 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 21e2565a16..606b667015 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 1e8ca0029a..2ffedb9171 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 0794e6f7e7..7d2ecd693d 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 d1f7a33032..42e10fd8dd 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 13f0d765f3..3002d705a3 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 77fa11c625..f9055e5823 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 a63d5125b3..daf5ae5a5a 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 e5782b072f..788b90924c 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 402caf0701..21408dbd84 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 7ec68cc1db..ca8c795818 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 c6dac4fa4b..bbfd0f596b 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 9f91130c7e..c9cf35d271 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 16c5f27a67..cd4cc4672d 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 84358792ab..e8ad11f06b 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 df9d5da491..adb01ea564 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 7afc8edc78..9293cb6b7a 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 4b75571ef3..92191e0d87 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 ccbc74cebe..4c83718865 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 be4d44e387..ee409a4551 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 2b66ac528a..8b4d51b399 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 e808032056..6bfcc1b38e 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 c8646f17bd..d8fcd6c3e6 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 f9fe3c405e..b42a782810 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 182c6517a2..eaa34b451b 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 a45396a606..b38f72e132 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 8ef37ab40b..cef19e21c0 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 51189f4345..d474316df6 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 89fb33d04f..96789b3bce 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 bd3f57ca9e..0f189d76a6 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 253f7b5859..74718f354c 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 151801b387..ec59af9638 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 d5a6ca20a4..9f5ae9949f 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 c575418c8b..910a7ef89c 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 6ad7197145..e3edf01b28 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 8cc1ed552d..b43e6775fe 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 dd53342d79..ebfe0b719c 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 cf630c9557..2eb14a8939 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 2bb7d1fdda..ce9bdd2749 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 7c4cafd37f..18ee78296c 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 b6ce1c103e..8ddb4e207f 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 e7cc26dbaa..9a0bcbdebf 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 9a111aade3..d7edf08255 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 2247526768..dec9277853 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 236a596de1..7507dc2a56 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 8c2f3e86b3..52c05faf49 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 4c6d73bce4..d933dc99e0 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 071428283f..be0d7fd883 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 5f32547d65..8376cb4a9c 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 fe47524428..081bc9753d 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 92a9a0042b..adcde5d692 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 fba278fbf5..3411ed83d7 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 3c88ce9f5e..8b4f1723ae 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 44f7aeb421..d0e9b9a6f9 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 586624d24d..3f95eb2567 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 8d50f8ceb6..ac9ed6ff99 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 635d1ce936..2996b82ca3 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 b3e7b6251c..a2c52bc259 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 0497da136b..f3e5c93469 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 475e59f43f..b15f6a2234 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 2e5494e078..f9c9596a54 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 08edd0e771..2150277bd6 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 fc26d6547a..edb3c35710 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 896d6141b7..29d0fe0b4c 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 f9e365f4cb..b28408ee00 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 baa68a5d96..b785ac4114 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 7b6e0fcf81..cf67e3b542 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 5028e69d3b..5179066477 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 f47de14fc0..6f1a44a4c5 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 bb2deade72..40890874b4 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 b32e8fd18a..d1dd01b87a 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 574198621d..9befda58c8 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 884a95ce23..e2611a33ad 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 03e7484922..afee93f566 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 f392b9a2bb..b1d9cd9a0c 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 bb4ccba144..9a1fceea76 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 c1c07acc36..6b2848264d 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 4861e84dd8..4d8a291bda 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 8c56ed5ccc..8ffa1b07a5 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 ea28e3e618..70ed7c78a3 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 de3316ccb8..2409603b9f 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 57d4cfa9f4..af896f13ff 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 56a0544702..977a9b00d5 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 5f2e3c973a..35500de21e 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 26435bbeb4..f65cdffbe1 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 e86fa91da0..56596735f3 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 860b85012d..15174f63fb 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 3b3b115f2c..42b72c4d0d 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 cb54726842..75dd1a33d7 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 ef7b93da0a..a86d6c54f8 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 4b285ab493..0e6a6be24c 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 5091aef977..e07252b449 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 5f8cb17b08..c2bbd78b9f 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 760a915330..fe4235e04c 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 ee926979c5..4f11b26292 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 4199be9049..6f3082b2a7 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 9ab8ffd9a8..54a574265c 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 206479ac07..94ad8cb8f0 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 2789d7b7a8..5e9cda4954 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 9ee5208ae1..5aa81b0f93 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 6fa0e9263f..d5d3c8f78d 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 2ff427ad79..da9796a65e 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 a9f8f2117a..bfbd8b5697 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 58b84f5881..53690f51e2 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 54bb96f81e..c6ddabb209 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 49230b0536..3c81d95dc3 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 a33abbf5f0..dd600088e2 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 925a8bbca0..8e6ac98a00 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 5e3a3a1449..b7dfead858 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 feb78d431e..e83d10fb39 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 c46a6d0e9f..07d41bd33d 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 beb4294b6f..4d477c6552 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 3e7357691a..da91e6171b 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 114e5abf8a..1e0297f335 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 933a437558..fb2b2340b5 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 093ab14f74..cbada572d5 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 61bff8a502..b7e57a4b0f 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 66e973beaf..59d008fc6c 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 ea394a4935..627ef51348 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 26aa1e8ef9..ad6eb0e954 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 0edf567116..2a11c97d9e 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 4f897d55ae..d21e4b3851 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 b52da0d006..83a9e02580 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 d17d9557eb..a75e420a5f 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 f61b5e00c4..e223e716a0 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 8c77c89e42..8503637131 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 9a27e200bf..a6e999fadd 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 d8b9b5dc11..10b2123f0c 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 3c8f2aa06c..10c6926179 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 83d13f10db..d25af1679f 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 9f65c86783..e762665c65 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 62a6a8373b..84d5779ffa 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 2d8bca70f7..7ed37c731b 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 7147a40576..6d3e3d5612 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 3c01f722a9..069da55a56 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 a97047e26c..3e7044b861 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 dcd0d2a838..a1b1f3a506 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 ce49d178ec..73abbe6bab 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 0572159a89..7ce6f7d1ca 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 e91623ad31..b99c2401bd 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 ec393e1e73..8acb2a99d4 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 b9f643377c..66315ca28d 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 6939727b72..60d9f376eb 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 a8982c06c1..a9e8eed79b 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 6c5ae4ea4e..ae6aacb3fe 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 bbff0da53e..475b0d1453 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 f12c879974..ffa9b54952 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 06a7b00d48..0be95c38ff 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 3e561e1910..790fd15b7f 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 dfd37cf07c..11467344df 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 2082b2f5c4..9d193891b6 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 7fa9637f66..2ba01b17e1 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 b1debfb920..9f95828bab 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 cafee1ddc4..9e1afe59d2 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 e4acd8f8cc..37ea0f2de5 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 77e91e65af..a88656b6e2 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 3af3698e94..b3681a53f8 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 d6d49d02ce..349c1362ef 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 5794f12e61..94a6a865ad 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 55e2b73bde..37f359406a 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 765c56ef01..f84ed97145 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 aa259b4ace..4c8a82a01f 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 4b2ba0447e..124d00367c 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 9384968c90..4fc64bdd41 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 fc37e04afb..bc93879564 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 f06e5579c6..24aaae7b26 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 a192b78168..4288c6c78d 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 23881e019a..b172b48763 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 576750ecf3..79a0a8758f 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 3d98342329..15171ffb84 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 68335dbe86..7bec6fd8fa 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 0fd016810c..82b47f914b 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 7bad020fc3..1953114021 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 81e03694b4..54f3f770e9 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 198d427569..0f500aea47 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 66eae57aff..64bc104020 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 d2e2e43cea..7640519ff2 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 e4a6163925..24824f082c 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 43ba4ff838..890d521296 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 edb41f3ac1..6322f8c28b 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 28fe7fd0ad..460b639e20 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 506ae5ff29..7a4dff9c01 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 3bcf6a527d..50c5aadb2d 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 622cb8655e..75348e5662 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 111c365001..f8c4f8dbd5 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 e56729f2f8..5cac6b8f5e 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 4f13e0154c..1d0d84a918 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 f4405e5b6b..55ff3b94f3 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 3f444ef507..77ee05514d 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 520d6d8848..86f3900bb8 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 1b242290ea..ce49045dda 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 691823c348..fcb6f3561f 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 b028c90f4f..9d180db2db 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 bebf898e0b..06100cbf5a 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 fa3e6928c0..e3b1b7c5cc 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 3f7f587902..72c2905460 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 d85b0c8389..ae37df9f77 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 e85ace4ae4..e0fdf881a6 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 91389893f8..26818e72cb 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 d823436242..d85aec6f5f 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 59fd689661..aa7bc1338f 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 060ac239f4..5a804943f1 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 de32188de6..377a8bda2b 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 40a8bdd32f..5bd8868bba 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 fd5933ebff..5d3ab87f55 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 a332771004..bc02a26ec2 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 b7d9aaabf9..2006098ebf 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 a81b3adc4c..725a9badf6 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 301c4c62aa..0261341dcc 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 25777c85f3..ff4c798545 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 1808eb30d1..6ea1b79081 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 7a5c271ddf..3d8f779c30 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 fc4433f675..e224bec7e5 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 d72b98695b..c43817bbd7 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 c301eefc3e..ad51913938 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 7762dd7790..68247863c1 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 be10f01f17..f881699648 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 572902073e..c9a8b6b33f 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 cf3be8949d..0d3b7a415a 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 765d79717f..dcda6eb8de 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 b5b65d0146..ebc24d7012 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 bd28b07b4d..56a4f49562 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 d31718c99c..9420a69317 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 33a5c8be41..0eb8839c26 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 f658e8f7b5..b932628f08 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 3d4d1fa24f..7e790781c7 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 bbe278b8d3..1826acbd6d 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 a44f93cd84..cfdd28f29c 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 5589b82cf2..f11c4ca279 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 73759e0c69..8148872496 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 a17aa2223b..f76885a72f 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 68c91aa83d..674455ce79 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 af53291a6b..427a5953f6 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 5c0949d467..5d9205e66e 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 46b09b6696..99d2ef51e8 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 fb442c19a8..3008c2f07e 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 f8010210e9..9e0370f3f4 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 7e297b7a5f..1b52b56d7a 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 68a9891511..a1caa31d85 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 c30e5b78aa..079d207a9a 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 17fa5b57a7..700ac14549 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 d2c517d870..785c64d11c 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 d2fff940cd..f237186732 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 f55aea97dd..47632b2aaa 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 f390a6579f..e1aafcb73f 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 5ac70e567c..911fddb244 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 9e31b09d6f..b476a84100 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 c5e8d83550..004d4f289f 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 c7485277d3..f438442672 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 e9e6f29e90..794ae0df0e 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 214be2332a..a6fb1653a8 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 eb8294f0c7..dadd487b01 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 f674311a78..470a4e6062 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 ec7c08820b..40c4fc35f3 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 7a9afec176..2a98c1cee4 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 acaa428655..ec6546aa94 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 01712d2e66..6eee7eeb30 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 3b1267060a..038254f164 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 b771a0140f..e78d34802b 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 84e729e7d6..5ad778dad7 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 94ab676a5d..7e7e5645ab 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 8de2ae6ff7..8861afa800 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 c990cbdb18..ed2734984f 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 44364357f0..53e848e2b7 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 241a1798f5..408aa7bdc4 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 70396f6ff6..27a3e150c4 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 04d810a07d..8d64bef76c 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 0a416ec9f8..8fc9ef7e22 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 f69b06c59f..9906253b45 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 5deffb3684..81063bf78b 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 93ad485fb3..488df709fa 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 aa9d72d0e3..2fe6fd2d9e 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 555256c98a..5af7d25081 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 a215007b55..084d8c6b88 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 544ca61e57..bd905ca2c5 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 b82ca0c0e5..4c90d50635 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 663a7dff92..699459d686 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 73608e588d..d32df044b7 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 f3c48b4c2c..472a640ed9 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 1a68d0a2d7..86b39e37e1 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 258a3ce1e2..e2172a23b5 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 e49e0be6a6..5d08843d13 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 988f85baf2..c61d26e1e9 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 68bca25000..3e8a4d2b0b 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 31ac60d317..a745de7da2 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 bc454026cf..bf911cfcfb 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 9bc9b16d82..154056ef67 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 0fabd1f904..27f3b871df 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 2c0da065a6..bdd1242b61 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 6080da5123..6a47a18231 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 1e611bbb7b..5c5bd1c92d 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 cea794bda4..ef19254526 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 c179d6f1b5..45b95a8a6a 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 99446bbbdc..72f66c15b3 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 7646d82455..5472e30c55 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 90aa7ab25d..b5f381a704 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 65d6bb4245..778723b5c3 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 c983564de0..9f1a4eaa29 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 b9594b1b0c..41f349cde4 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 468184bb43..7b9cbf147b 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 82f60bc84b..b786052e85 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 0b9b82ed6d..b30e298d4c 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 138256b51b..9a5e5c24c5 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 21876fddb0..b5f3b6ea21 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 53c138d049..ddb1a67c05 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 bccfee4e08..0e4677d461 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 60ec16cf4c..dbd0d8252d 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 6562e8a118..ea528c8cb3 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 b31244473f..bbcdddb3eb 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 35d563b855..92204ebf55 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 5d7a7dffaa..d876631ce9 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 ac5c17edfa..9b477f406f 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 958ea72a1d..db3ddf7af8 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 f4bec8ef1f..e56d6c81bc 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 3a9fcb8f0f..51bc61faf2 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 68daeabf21..f4e3dc2f3a 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 850dc263b2..6d711f86c8 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 2d39e17b3a..1f810f92e8 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 49b189a8d6..083612d6b9 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 f332863bef..15241ba174 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 884ba80938..1323dc53df 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 ecabf709fe..df772e7040 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 33042cc176..e145971eae 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 39a12e4d86..95eb3f25f6 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 0268143d67..22dbab6a9a 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 7fe39f7400..6b8fce26b1 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 ac18f3ac08..611c3de3f0 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 baec023379..bae324834a 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 8da90d0cfb..9f2b44ca18 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 6e52387a66..b68e04a769 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 ef7b9d2b6a..3188fd01ca 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 adc217ec3b..bbbcabe9be 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 7181cc7ace..759c08aaff 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 97695b1f8b..eb573de595 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 f2f5b603f8..902c246b7f 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 1d5c6af50f..f48f69de28 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 b52006beef..f5655267f6 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 d0ab98047b..bdb82b6d2a 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 d111107c40..e837deda0f 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 7363c2f9c0..dc1b200a4c 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 a61a96a081..7a493600ba 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 a03493a29f..91c40b6c63 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 b5368be495..57857ae38e 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 53f7eac362..edc70b34a2 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 23c4fbac84..3e0f4e60ba 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 06ebe4ce9e..8daa61cb53 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 96c738b50d..b6b66dffe2 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 6bd4c12b8e..13ee1b295e 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 4ced1d3c22..25b28b9021 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", 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 f272655925..527c1d1b2a 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() { 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 cbc495dec1..7aca2e4371 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 1ffa048d6b..0bffa58af7 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()) { 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 a6b81aaba6..984c2bcf14 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) { 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 04f73cf01f..6f6b8d0f01 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 10ed40ebd6..f65f466789 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; } 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 cbc495dec1..e057b05994 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 7bac6e7d4e..8403695835 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); 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 e8e53859bd..b3de85254e 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; 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 afbdb413c3..0ba7d5d4b0 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); 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 122ab3fa03..f40cd0d77f 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)); } } } 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 3eeb88754c..d4cc7b2bb9 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 68d2d021f7..990f464bc1 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 ea405fda1a..f6e0e884f3 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 b0117d8539..6a28f85994 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 3288c4fcdc..161e9c3e88 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 011ff3e12f..6925ea89a0 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 1943b98a75..79bb1d13bf 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 efb8228828..cda5d7eab0 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 6b1239fe45..022d9d9003 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 c647850d0c..2adf09d3a0 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 24e5a41fd0..77c3fb854b 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 de957a7488..19fb5c4dfe 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 b40c59c04d..442f9884e2 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 d6e2b4fbc0..62dfedc1b1 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 c7c29dfd6e..f60201d93d 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 bdb9ab4a5d..8eff71b608 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 4f23c0685f..06e93fda20 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 02611d5ea5..7d6843d46e 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 619e35eacd..3026f4176f 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 cf98a316b2..1fb7ac0ac2 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 061e87596f..d0359ac36f 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 4272114999..46a8af3182 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 a75fe8b7ce..fa57282c54 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 84288fa538..a403136329 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 6d547cbb86..78b4b0477b 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 f82d357fc1..f49178b4df 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 1f26904e05..f2b45a4436 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 a1b42385e2..ae72a1c51f 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 864c9a197f..530f53b57b 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 4d58cb46e6..b118377a46 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 e99376a69d..751a0e9851 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 42dca32f47..45917e8c2c 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 c06bbc6783..e417029cbe 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 aef49cdf19..737a232ea7 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 d261ab9829..d02da047cc 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 e778129e05..3fa561583a 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 35eea28854..3ac54f3ac0 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 8313a69159..e1c9857107 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 65c292ce75..94ffdf56d2 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 117df69d65..f6c844a09a 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 60701995dd..6b2a1a6c63 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 123411a7b0..2a393ccd02 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 117dbe4950..01ae128cda 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 9e3f24edcc..ee59377b78 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 9598ee3976..224002bec7 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 98378d8329..c3dbbbfeb4 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 c63c411cb9..18496bd40a 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 8b6e5f3c38..408a7c8ceb 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 d4bf2b7854..da8c3be275 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 3848eb6d5c..cd6710a33c 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 55c2c697de..1021b1210a 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 fc3699d5f1..360f342135 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 2a07fc7987..7f6cb2e219 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 6f9d2b6878..f756430344 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 4a531ca226..86563696dd 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 04aa08729f..0fe4ae3c2e 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 25b7499250..4c97c16405 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 0345e79343..c46fa8d8d5 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 64dc2bb5c6..93df73432e 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 5c9984da1c..9b81324b0d 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 6d6121654a..099a3b8452 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 1377bf961f..eb05e50daf 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 ca9de6f628..2b30863833 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 71aa65239b..748ec0b000 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 a15a226c95..bd57790c5e 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 c377f419e9..3839cd41de 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 4cade56a28..17b13125e2 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 18dd68113d..863ce3a21f 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 581beb4cd1..81dfc4cd9c 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 75efc18232..6297d10e64 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 0083291762..8e26319239 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 c003ef95c6..5f85053034 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 f2c9aed079..a4c1068684 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 5b2e8e6384..f50c4876f3 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 0ff8d02217..3252322f94 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 576421b685..059c1dece1 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 dc43b611af..20f12e57ef 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 2bc71f7779..346052389e 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 0b08d3ec66..b08fe56ccf 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 42eece2f04..c5e54a7924 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 96b220f783..2e742ac65b 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 36b3bef467..e2e3c71b94 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 7058736021..3691f14526 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 926b29e9e4..3752077181 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 56b022398e..3edee2d310 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 5ed822aa07..57539d1473 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 66c78d3392..4c87355771 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 81e8c56df1..e41025176d 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 74dca7b6b2..2f09202bc3 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 82015f9334..9fe5f29278 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 2d51878320..b5ae360acc 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 e85671da2b..69c33de5c5 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 dac0bd47d1..0b2772c842 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 9a560f8a21..36c3e09347 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 4a20f56c6d..9f039f015b 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 6076410065..cd7f6d89f4 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 a6994d65cc..384d362de3 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 657197abef..5a12cdfcd9 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 3b851c78bf..3db6f7cc5d 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 a4f6c10fb0..2d5de0277f 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 8d879029c0..29c9e1a394 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 cb87813875..a522b3897f 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 f01566f827..b7321474a2 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 b64e785658..9db18653f9 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 05cb595c9c..5af2520169 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 15649d93cc..ad398470be 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 e953e2d945..629841809f 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 29a7224780..a248abc333 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 263a4e6717..90d2b225cb 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 0cfe0c46b4..d4d80d382b 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 3a3c6f5e99..1e79369bf2 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 2582a5201b..560b857e05 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 b5bc48adc4..53411f555d 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 24ddc57c9c..46545c8a8a 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 b20c0aba34..41e1d950da 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 d018c1b5cf..ba55fafabb 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 1a7a0c6308..becd5ac9c0 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 d51c906e21..153c3b140e 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 1a865b450c..718febc53f 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 b8de0fa2ec..81756c5b9d 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 df8a253c96..bb5902339c 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 c8b38554ec..c3a95fcbe4 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 0efadedbd2..10fce34ab0 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 331ef231ba..aaa1cdcdb3 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 2743963802..6762d0ea54 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 26a994f782..b6734e2981 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 ee631b2e6b..7ea8f1b805 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 a17219effa..6a2d0891b3 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 8ff982f35c..31835743a5 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 05732a0ea8..c44a64127b 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 628bc4630b..a9dfe62357 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 f17a24269c..7e32f90b1a 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 5fae1f5ab6..74447d964e 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 71a56641ff..e024c4ec12 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 6ac8b61089..f02508e364 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 f51ede8a40..9c6d95fc48 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 139d9a427c..5adee1473f 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 d2ca767e09..9f1cf52626 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 e0bc61f672..1b79eebf89 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 23daa532bd..05346b9b9c 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 89dd632e41..721a508409 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 611afc6aeb..ac1121b850 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 9bc2bea3ff..f476082244 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 4d628119af..d58b88919a 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 3863cf9e72..5e60d353f5 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 6a8fd0b9f5..736659c2d6 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 ce3accee37..df0c99321c 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 7c55891d3c..2063a13bc8 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 9eee6e8907..d0eac27adb 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 7aedd0589b..f6e21219d6 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 f69eab70d2..dd248b4924 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 758e57adcb..0e8c414c4f 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 84f5bcbcd3..a75d890506 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 a86151e8b8..b4b2643461 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 b0f95a5aee..3a3ae42e7d 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 b79395deed..65d33f9fae 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 b088352a08..781fb4fd5f 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 36a6581e47..e898f15c67 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 f6fb2dafb1..41a494fa0e 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 ae2b0b9a4f..299368667a 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 be9698ba7f..6e059d646d 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 06e5578a19..7af2a0864d 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 989f270e49..761eebdff5 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 72505e98eb..c16f3f48ed 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 6ebb3eb0e1..7fc104a46c 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 cc3b05d9a3..03dd4721a8 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 4ab7db41a6..df23ac5755 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 ee8cef6fef..722b853e7a 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 bb31bc0fcf..b60cbfa392 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 2aabdb2b0c..deac492ebe 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 5f19076e26..868c045c88 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 a20319aebd..445521bc6d 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 1b6b61071c..24f590e80d 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 60d2b7d971..4e3058b256 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 a416f26a93..95238ab1d8 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 0d54c67f7d..84303f7131 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 e5d5c76590..f082ef709c 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 3b0b408ffa..836576975a 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 e85c780f7e..3d07097290 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 3715e6bd32..8c0ee57df4 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 3df47099d8..2ff68d3812 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 e96a80b4d6..fd9534344b 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 be362ff784..b2cced49e2 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 588600f790..95e832b936 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 c253f00193..cea4bc5e3a 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 652f46b6e9..c4fba92b67 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 555a98e65d..62b262a66e 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 3b9075a160..3055cdec16 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 3d67c200fb..914c763a8e 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 f372272409..8f8985d8d5 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 75bfa8d5ce..cf2df27bbd 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 56651e4d4b..6e106da39d 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 1d3f6d4086..f1e1da92c5 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 971df918c1..c4fb8c18d5 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 febc9de51e..7ffdafc514 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 4c60a8191a..32129adf28 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 138501851c..d2d80a21ce 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 606b667015..f9ec17656f 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 2ffedb9171..f603edd312 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 7d2ecd693d..f8bc572078 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 42e10fd8dd..57930c3aba 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 3002d705a3..166908dc60 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 f9055e5823..4e045aa92c 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 daf5ae5a5a..82e47f1d19 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 788b90924c..cc4b95d1fa 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 21408dbd84..bbc02a1569 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 ca8c795818..58d4ca6f79 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 bbfd0f596b..ee275856d3 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 c9cf35d271..66664425d1 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 cd4cc4672d..b4d68fd3ad 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 e8ad11f06b..68e6082019 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 adb01ea564..129186c2b2 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 9293cb6b7a..8b2b0d44b4 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 92191e0d87..6253a52d25 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 4c83718865..977993c0c5 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 ee409a4551..452756c1bd 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 8b4d51b399..2bc9db1785 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 6bfcc1b38e..3041d60c72 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 d8fcd6c3e6..53932e10e0 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 b42a782810..e5d040661c 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 eaa34b451b..b8fc14b97b 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 b38f72e132..9cae0d9b69 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 cef19e21c0..d29ce5dc99 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 d474316df6..d368243b2f 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 96789b3bce..a50df8b0fe 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 0f189d76a6..5630c70d55 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 74718f354c..98a5c79dd9 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 ec59af9638..3c61758594 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 9f5ae9949f..b348db4d2b 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 e3edf01b28..75a3f680cf 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 b43e6775fe..760df5289e 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 ebfe0b719c..7de23ca415 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 2eb14a8939..30f1200793 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 ce9bdd2749..3f774819bc 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 18ee78296c..3821c95701 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 8ddb4e207f..ba991ee4ab 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 9a0bcbdebf..fef3f1d26d 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 d7edf08255..0ef0bdb50f 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 dec9277853..ee2243de20 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 7507dc2a56..004b309857 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 52c05faf49..7dfe54ebee 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 d933dc99e0..673d0ed6d1 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 be0d7fd883..58d7b40ef9 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 8376cb4a9c..9f5016e156 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 081bc9753d..f6b49738a3 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 adcde5d692..adc8f908f1 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 3411ed83d7..c592cade33 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 8b4f1723ae..7a4a81e726 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 d0e9b9a6f9..7197808c4b 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 3f95eb2567..cca36c6565 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 ac9ed6ff99..2ee7f310bb 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 2996b82ca3..f5da4d9178 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 a2c52bc259..857af3f92d 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 f3e5c93469..3afc3e0e18 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 b15f6a2234..a23ae756b2 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 f9c9596a54..32baedf12e 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 2150277bd6..3d2e8d58ca 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 edb3c35710..007b472165 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 29d0fe0b4c..6b98e67345 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 b28408ee00..471f688843 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 b785ac4114..e322463663 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 cf67e3b542..f02d873600 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 5179066477..eabe26c857 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 6f1a44a4c5..d617c9a26c 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 40890874b4..f6ca6a5fd8 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 9befda58c8..f8c6c2b257 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 e2611a33ad..66eb4c6c3e 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 afee93f566..8873636d86 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 b1d9cd9a0c..6376fb7275 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 9a1fceea76..312ca589f7 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 6b2848264d..2d5e31f158 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 4d8a291bda..45a37f4e9c 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 8ffa1b07a5..d1a63938f9 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 70ed7c78a3..758989a2e9 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 2409603b9f..b6df399637 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 af896f13ff..b43c66c5f9 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 977a9b00d5..992acbe464 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 35500de21e..95142361ea 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 f65cdffbe1..a07516fcaf 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 56596735f3..e190013b48 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 15174f63fb..58869455f6 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 42b72c4d0d..d7c544655f 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 75dd1a33d7..5e2f4f7666 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 a86d6c54f8..20754352eb 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 0e6a6be24c..11f96c28d5 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 e07252b449..3be1186626 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 c2bbd78b9f..7f9b45afb1 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 fe4235e04c..0a324d8bbb 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 4f11b26292..0801338ceb 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 6f3082b2a7..798bce4b4b 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 54a574265c..0ceb5f5c7f 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 94ad8cb8f0..6fe9e775fc 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 5e9cda4954..413e3cf10c 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 5aa81b0f93..b6363d57e3 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 d5d3c8f78d..59f0e864a3 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 da9796a65e..cc88f6e429 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 bfbd8b5697..f0d99d865a 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 53690f51e2..3993883ecc 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 c6ddabb209..2e3b371570 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 3c81d95dc3..0b7cdb2d2c 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 dd600088e2..54a7105fe3 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 8e6ac98a00..05f9d279b1 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 b7dfead858..4c882b2bb3 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 e83d10fb39..1b9fe0a222 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 07d41bd33d..7e93c2fe9f 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 4d477c6552..32b5bacee2 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 da91e6171b..8ce89d95d2 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 1e0297f335..46d3bf1da4 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 fb2b2340b5..32b4f8ce15 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 cbada572d5..360d3b5304 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 b7e57a4b0f..6a78f683f0 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 59d008fc6c..15978699b8 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 627ef51348..c6ea80174f 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 ad6eb0e954..386f892ed9 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 2a11c97d9e..a7787efd00 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 d21e4b3851..91868ad3f4 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 83a9e02580..89b5155f54 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 a75e420a5f..339f3085e0 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 e223e716a0..3b1dee392a 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 8503637131..430a8bb027 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 a6e999fadd..4f159c351c 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 10b2123f0c..17565890e5 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 10c6926179..f411d78179 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 d25af1679f..82d4cfce0b 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 e762665c65..87dfd06a14 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 84d5779ffa..38e0626eef 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 7ed37c731b..5628970efd 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 6d3e3d5612..89f00163e3 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 069da55a56..9979e80ac8 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 3e7044b861..ccdeb80b13 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 a1b1f3a506..fbfa343392 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 73abbe6bab..629e4b310d 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 7ce6f7d1ca..8d5fa38999 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 b99c2401bd..a69e68ea68 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 8acb2a99d4..c485d1c034 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 66315ca28d..b178a3c903 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 60d9f376eb..554b322033 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 a9e8eed79b..2861541d8e 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 ae6aacb3fe..321a17e6a3 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 475b0d1453..31303dae2f 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 0be95c38ff..8e86e2d766 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 790fd15b7f..a038cbbe3e 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 11467344df..b6e8ca4790 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 9d193891b6..b06f066c55 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 67fb527463..ea5f5a3920 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 2ba01b17e1..20f5c5af2c 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 9f95828bab..e40db9de7c 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 9e1afe59d2..c381a70180 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 37ea0f2de5..3eb6c56f6f 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 a88656b6e2..0aad72d433 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 b3681a53f8..9e430a342f 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 349c1362ef..ed3fb1a7c3 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 94a6a865ad..4b51d10880 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 37f359406a..c4809cb5b7 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 f84ed97145..d37a4a6651 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 4c8a82a01f..ce7e12c360 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 124d00367c..df5970c150 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 4fc64bdd41..d8349aba6b 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 bc93879564..e1229186c2 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 24aaae7b26..545feca668 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 4288c6c78d..6c5efd05d9 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 b172b48763..edc4565201 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 79a0a8758f..9001665d27 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 15171ffb84..184b61b4e5 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 7bec6fd8fa..20641e561f 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 82b47f914b..1f8f55744a 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 1953114021..41d390e606 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 54f3f770e9..df65634c5e 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 0f500aea47..e8c8874e4b 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 64bc104020..0be1e98867 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 7640519ff2..6f8a7e1211 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 24824f082c..782a629110 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 890d521296..565b817447 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 6322f8c28b..5224d55239 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 460b639e20..4a60c0b633 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 7a4dff9c01..4ae1f56f18 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 50c5aadb2d..17aaa2f259 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 75348e5662..ea6ef3c81e 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 f8c4f8dbd5..7c4b879fb1 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 5cac6b8f5e..0193ae76fc 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 1d0d84a918..217171f746 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 55ff3b94f3..90e7012ac2 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 77ee05514d..57b3c49fed 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 86f3900bb8..fe94441ea6 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 ce49045dda..f6bea0bf49 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 fcb6f3561f..e5e1c4debf 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 9d180db2db..9cca570f4c 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 06100cbf5a..c5d2476899 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 e3b1b7c5cc..79af95303f 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 72c2905460..ad33a105cd 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 ae37df9f77..1a142bca4d 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 e0fdf881a6..4852ecbe62 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 26818e72cb..700cad7fb0 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 d85aec6f5f..85fdd6f7f1 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 aa7bc1338f..d5206a34a0 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 5a804943f1..44c66f68c5 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 377a8bda2b..d9c47d97a5 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 5bd8868bba..a45c24e095 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 5d3ab87f55..318c50196c 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 bc02a26ec2..8b059c1333 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 2006098ebf..bc5991a1ad 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 725a9badf6..de2a0294bc 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 0261341dcc..1c87f514b9 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 ff4c798545..302ea26ae7 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 6ea1b79081..3ea5b6777d 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 3d8f779c30..25e23072fe 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 e224bec7e5..27b0d6c7fa 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 c43817bbd7..f06cfbbbc9 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 ad51913938..4d04c5bb97 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 68247863c1..0481da7d48 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 f881699648..9bfd573484 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 c9a8b6b33f..f3f8e54517 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 0d3b7a415a..0c8eafde47 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 dcda6eb8de..668a512c56 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 ebc24d7012..5e37060824 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 56a4f49562..b388603529 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 9420a69317..caa2976ee5 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 0eb8839c26..0c384f71e0 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 b932628f08..fcecae9144 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 7e790781c7..954030cd80 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 1826acbd6d..075d05d2d7 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 cfdd28f29c..48963a7511 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 f11c4ca279..8fd5aec3de 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 8148872496..ac05de4c3f 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 f76885a72f..38693d1adb 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 674455ce79..b52b1baeb7 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 427a5953f6..b2206da3d6 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 5d9205e66e..535ddc3dd6 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 99d2ef51e8..1e2d5fe86e 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 3008c2f07e..bcc928c2c3 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 9e0370f3f4..2c5b1b9e7d 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 1b52b56d7a..6c33ba6236 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 a1caa31d85..6f25d17985 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 079d207a9a..d526da7627 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 700ac14549..7c091c67c5 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 785c64d11c..6b00aaece8 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 f237186732..025f255a74 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 47632b2aaa..e4c00be5ec 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 e1aafcb73f..1e9ba35a74 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 911fddb244..70b3598aac 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 b476a84100..aa0f0c1923 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 004d4f289f..a5271906bf 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 f438442672..63969f8694 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 794ae0df0e..e44973f27d 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 a6fb1653a8..3d903472ae 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 dadd487b01..5f9897e2ee 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 470a4e6062..0e4b234b4f 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 40c4fc35f3..02cb7e9d39 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 2a98c1cee4..10b324dcf9 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 ec6546aa94..2507e04068 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 038254f164..65df48533a 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 e78d34802b..e124780807 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 5ad778dad7..bd60566548 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 7e7e5645ab..dec013a248 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 8861afa800..302f0bd9e7 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 ed2734984f..4cb6860da9 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 53e848e2b7..fa28f5aeb1 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 408aa7bdc4..d2902194c1 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 27a3e150c4..72eac6329f 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 8d64bef76c..875e44c6f0 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 8fc9ef7e22..cc28d67e09 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 9906253b45..bfc6d94e99 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 81063bf78b..680ab5ba56 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 488df709fa..6a54f79681 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 2fe6fd2d9e..24f1c8f9cf 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 5af7d25081..4d7b2508f6 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 084d8c6b88..eb793fed13 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 bd905ca2c5..17c6a312c7 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 4c90d50635..192ab8e525 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 699459d686..1150925693 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 d32df044b7..1c87aa8d1d 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 472a640ed9..67dae3dd3b 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 86b39e37e1..593bc84590 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 e2172a23b5..f559a9f319 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 5d08843d13..70e4489159 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 c61d26e1e9..1b72a8e908 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 3e8a4d2b0b..d390324498 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 a745de7da2..a971149508 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 bf911cfcfb..a92a77a1bc 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 154056ef67..1a910d347c 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 27f3b871df..80172dd685 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 bdd1242b61..70bc9848c0 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 6a47a18231..046a06a890 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 5c5bd1c92d..027d652086 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 ef19254526..6adecb1bf4 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 45b95a8a6a..093d536c3d 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 72f66c15b3..dd86ed6f8e 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 5472e30c55..42a33ff0cd 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 b5f381a704..42c687ed7b 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 778723b5c3..54f0071efd 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 9f1a4eaa29..5aa6f84e51 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 41f349cde4..7cf1ded543 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 7b9cbf147b..c0483cfd96 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 b786052e85..27779d8efe 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 b30e298d4c..c19785ccaa 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 9a5e5c24c5..35e74fe68b 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 b5f3b6ea21..f230226b89 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 ddb1a67c05..e53d5657d6 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 dbd0d8252d..591e0dd75b 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 ea528c8cb3..c7e425b32b 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 bbcdddb3eb..cf382de0ae 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 92204ebf55..c1489cc0f7 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 d876631ce9..d0701f564f 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 9b477f406f..97c1d9d86a 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 db3ddf7af8..c9b89ee8f7 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 e56d6c81bc..4b4ed3450f 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 51bc61faf2..8765785da5 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 f4e3dc2f3a..552a8da97a 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 6d711f86c8..74c73b303d 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 1f810f92e8..757b0877a9 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 083612d6b9..6ce7dd1b2a 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 15241ba174..e05edde420 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 1323dc53df..467db34a1c 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 df772e7040..ed601194ea 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 e145971eae..c5e433c850 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 95eb3f25f6..f52e13379c 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 22dbab6a9a..a67b042b56 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 6b8fce26b1..f83c10096c 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 611c3de3f0..ca9d6ddec3 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 bae324834a..40d1263186 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 9f2b44ca18..ac92bbc486 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 b68e04a769..32757d6d2e 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 3188fd01ca..ca4b98e326 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 bbbcabe9be..59cfdd51f8 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 759c08aaff..4b3640fae1 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 eb573de595..fd05551a83 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 902c246b7f..401b5f3f89 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 f48f69de28..e9bb69f2c0 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 f5655267f6..ef4d03946e 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 bdb82b6d2a..bcb60fbc82 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 e837deda0f..dd728d3549 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 dc1b200a4c..4e53bbf20a 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 7a493600ba..08f9459a9c 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 91c40b6c63..6f88b5b340 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 57857ae38e..1353cc1816 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 edc70b34a2..232bdb7e9b 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 3e0f4e60ba..23694f805c 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 8daa61cb53..b1f0efb11a 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 b6b66dffe2..123bf7a560 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 13ee1b295e..7c320b3a19 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 8637b8da26..cd025aec78 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 2782be65da..327fe75b9d 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 2c8bdbb890..eee768db5c 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 25b28b9021..83e03f2f5d 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", 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 a6b81aaba6..f6acf6af1b 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 ); 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 e1263744e1..12db682c1e 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 20fbf7f93b..640c28c007 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 e19a35bbc5..f4ca098eed 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 3438c1c30a..51b3f31fb9 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 b576253f4f..b9119f2cb6 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 13298f113f..68549d14fe 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 916e35419c..0244f392a0 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 98d2a84fb6..fa8c25fc98 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 adf3c3e9cc..3a1c370b4c 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 36e4babedf..cb37dd7036 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 25071709fb..d8d9969802 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; } } } 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 a064aa5c76..90fd3efcc9 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 +} 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 6ccb54b79a..3d15a2a584 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 91646312e9..438d9871c2 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); } 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 510c38a3c8..25dfc64cfe 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml @@ -15,7 +15,4 @@ - - - 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 8fdf62aeb3..59c12c57a3 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 892bf435fc..59ccbaa1fc 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 cb2bad1bab..7489127935 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 16b27fcefb..e7f28e1e1f 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 b59902a4c9..56b4a9bfb3 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 8e2b2a129a..cb1678541b 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 c28dead76d..1905092886 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 4a430fb7d2..327fb72f43 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 0270e921e3..306ae7acb8 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 c398a0246e..41e885396d 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 55f760e763..d0aaba8477 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 19fb5c4dfe..cafbf8b0d9 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 442f9884e2..f3cafe7a6e 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 62dfedc1b1..6f517e7c90 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 f60201d93d..3f47cdeda0 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 8eff71b608..1b87c57679 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 06e93fda20..5d21c869ed 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 7d6843d46e..f19133fabb 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 3026f4176f..12b60c3972 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 1fb7ac0ac2..df6f19e4e5 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 d0359ac36f..0081251250 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 46a8af3182..40ddac8dbd 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 fa57282c54..f024808d5a 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 a403136329..63b2b436ea 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 78b4b0477b..e195eb4ba1 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 f49178b4df..eb25bb6648 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 f2b45a4436..e500fe54fd 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 ae72a1c51f..0a3a474d3e 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 530f53b57b..81d1cf9987 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 b118377a46..25bef73f5e 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 751a0e9851..0b17a43cba 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 45917e8c2c..b7d203caa1 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 e417029cbe..78a9b05024 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 737a232ea7..bf61fd2004 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 d02da047cc..b934bec399 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 3fa561583a..a56fe6475d 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 3ac54f3ac0..bc87fa7673 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 e1c9857107..baa1264b2f 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 94ffdf56d2..74b3246d05 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 f6c844a09a..3848fb765d 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 6b2a1a6c63..380d2ad0e6 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 2a393ccd02..32b91213c2 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 01ae128cda..f4c82a2a13 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 ee59377b78..21e1e2b42b 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 224002bec7..f3d1dacbdb 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 c3dbbbfeb4..095ed8b872 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 18496bd40a..f914ae4694 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 408a7c8ceb..8e82ebd7f8 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 da8c3be275..e3716085af 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 cd6710a33c..7ca1084cba 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 1021b1210a..4c929a0feb 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 360f342135..9ce3a57828 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 7f6cb2e219..e20ff07ce6 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 f756430344..9c2f882ee6 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 86563696dd..2fdd1c3633 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 0fe4ae3c2e..901b021089 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 4c97c16405..4d2a2eae5c 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 c46fa8d8d5..0a57a9cde5 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 93df73432e..5788c4b356 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 9b81324b0d..d36b308929 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 099a3b8452..8c3ebe3174 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 eb05e50daf..0cafa6fa3f 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 2b30863833..ee14365086 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 748ec0b000..14ec9de669 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 bd57790c5e..360b6a0075 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 3839cd41de..63aa4bc173 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 17b13125e2..c0a227946d 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 863ce3a21f..3e77cbaf0d 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 81dfc4cd9c..d95f5c114d 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 6297d10e64..e6f5ed9d78 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 8e26319239..3329cb8d3f 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 5f85053034..ee99969b61 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 a4c1068684..36c2eaf374 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 f50c4876f3..47a0b7c931 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 3252322f94..0febaa69c3 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 059c1dece1..8694bc3045 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 20f12e57ef..b193c6a20d 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 346052389e..81d2d4aaa2 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 b08fe56ccf..b3b252cecb 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 c5e54a7924..d1dd4477eb 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 d645fee80e..6440ed6d3a 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 2e742ac65b..36c187ac1f 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 e2e3c71b94..10fc41ca5d 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 3691f14526..af00f22b58 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 3752077181..d150c9ea1f 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 3edee2d310..518f1aa748 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 57539d1473..393a83e49f 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 4c87355771..7522d7cf10 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 e41025176d..b6072df48b 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 9fe5f29278..b06796c7f8 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 b5ae360acc..d6cfe45855 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 69c33de5c5..d15ee15a56 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 0b2772c842..6098e170aa 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 36c3e09347..f8360c568f 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 9f039f015b..d1fbba123f 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 384d362de3..309bf27595 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 5a12cdfcd9..7ceb81b1df 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 3db6f7cc5d..38371de9a2 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 2d5de0277f..55a57eb043 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 a522b3897f..b19e65069e 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 b7321474a2..e55df6f34d 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 9db18653f9..9889535bc5 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 5af2520169..80a9c4ce8c 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 ad398470be..d3fc64da1d 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 629841809f..6b8a1a6a30 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 a248abc333..3a028120c6 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 90d2b225cb..eaa87e4858 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 5084af53bf..7a064fb6f3 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 d4d80d382b..b4100782eb 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 1e79369bf2..ef1b9977dc 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 560b857e05..8a72120f5d 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 53411f555d..9cfbcf417e 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 46545c8a8a..d4aef6810b 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 41e1d950da..9b35e73384 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 ba55fafabb..8fbf735990 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 becd5ac9c0..fec836f5f2 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 0a53465ff8..aca16b2665 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 153c3b140e..924acbadc4 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 718febc53f..40f6878315 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 81756c5b9d..6448c511db 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 bb5902339c..e953455fb6 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 c3a95fcbe4..e3d1016a35 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 10fce34ab0..6c5085952d 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 6762d0ea54..cf57d1175c 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 b6734e2981..c07fd0d316 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 7ea8f1b805..bb43b85a2f 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 6a2d0891b3..0ea609f1c0 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 31835743a5..1d550e0201 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 c44a64127b..8499787001 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 a9dfe62357..6113a81c87 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 7e32f90b1a..633c23e05e 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 74447d964e..4075125d91 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 e024c4ec12..e56b4fdfcf 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 f02508e364..2b0ef136fa 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 9c6d95fc48..0d033e3d96 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 5adee1473f..8a90923340 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 9f1cf52626..f5ed84b74d 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 1b79eebf89..f1faa72a3f 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 05346b9b9c..56e299b913 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 721a508409..1cc51050fa 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 ac1121b850..3a5b7779bd 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 f476082244..a8224ed9b2 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 d58b88919a..9e3677fcdd 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 5e60d353f5..54e6f84456 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 736659c2d6..a9ac1b53c7 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 df0c99321c..9a6956a551 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 2063a13bc8..c09193d7c9 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 d0eac27adb..509eb435e3 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 f6e21219d6..b5f034992c 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 dd248b4924..14a8a6d025 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 0e8c414c4f..4d175ceb53 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 a75d890506..b801dab501 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 b4b2643461..3bb2c74afc 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 3a3ae42e7d..2a3545238a 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 65d33f9fae..af5ea17cd6 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 781fb4fd5f..38f654610f 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 e898f15c67..e383782a58 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 41a494fa0e..bfb9c872a9 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 299368667a..06fd8fa8cb 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 6e059d646d..7d5f29bf0a 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 7af2a0864d..a5f08d463f 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 761eebdff5..08e7fed71f 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 c16f3f48ed..c4b7ee0fee 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 7fc104a46c..4ae5147bca 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 03dd4721a8..684d45ae22 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 df23ac5755..c03d12e268 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 722b853e7a..432220cf0a 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 b60cbfa392..23c264433c 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 deac492ebe..750805bb5b 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 868c045c88..c25f1a4514 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 445521bc6d..5d626e7ef4 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 24f590e80d..96d097adf8 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 4e3058b256..833ad6436c 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 95238ab1d8..7db359cc67 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 84303f7131..e1a1fbc780 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 f082ef709c..3093babfb4 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 836576975a..5d16ab1f58 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 3d07097290..e9072e8a08 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 8c0ee57df4..e287c5fe8f 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 2ff68d3812..16cd4bf346 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 fd9534344b..118e99b7e5 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 d5ad04c08d..f8ac471b2b 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 b2cced49e2..fcb4fb7304 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 95e832b936..f2b442e6d7 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 cea4bc5e3a..65a5177cdb 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 c4fba92b67..7ca4969c3b 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 62b262a66e..fac04e71f0 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 3055cdec16..02db02f21f 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 914c763a8e..c05a173698 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 8f8985d8d5..19364072ed 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 cf2df27bbd..ebc29ae86c 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 6e106da39d..ea61959f14 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 f1e1da92c5..26b1d2e455 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 c4fb8c18d5..bc1e33cad0 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 7ffdafc514..160a54c12c 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 32129adf28..be74cef536 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 d2d80a21ce..c31be35ab0 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 f9ec17656f..76b57d1474 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 f603edd312..830ee08a23 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 f8bc572078..b09b8cf248 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 57930c3aba..516a9ae137 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 166908dc60..d78ba4b31e 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 4e045aa92c..d38be332ec 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 82e47f1d19..b4c9764d4c 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 cc4b95d1fa..13c98472dc 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 bbc02a1569..f04d0346a5 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 58d4ca6f79..4b3ff1b6ca 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 ee275856d3..dbd84ee318 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 66664425d1..9d6bb20c70 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 b4d68fd3ad..fe1b763855 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 68e6082019..eca8b4b8f6 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 129186c2b2..2636b71dfc 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 8b2b0d44b4..7879939ac5 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 6253a52d25..749189c571 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 977993c0c5..be8fb9a574 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 452756c1bd..f4afa3dfdb 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 2bc9db1785..9e877f02f3 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 3041d60c72..40f8eedd3f 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 53932e10e0..a46f1e833e 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 e5d040661c..330ad870c1 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 b8fc14b97b..34340946f1 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 9cae0d9b69..573c7054e9 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 d29ce5dc99..b5018ef31a 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 d368243b2f..1ab495a8a0 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 a50df8b0fe..6ca4b051a2 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 5630c70d55..92852949b2 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 98a5c79dd9..1d4fbf8f8d 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 3c61758594..6a3e978763 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 b348db4d2b..fcdf9ed449 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 75a3f680cf..cf8defcbff 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 760df5289e..579178888e 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 7de23ca415..a3c37675fe 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 30f1200793..ef76904aae 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 3f774819bc..78802e5f8a 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 3821c95701..7d3a36edcd 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 ba991ee4ab..486239368e 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 fef3f1d26d..2a02df7abf 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 0ef0bdb50f..9641d4ea4c 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 ee2243de20..2ed082766a 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 004b309857..929e166861 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 7dfe54ebee..00e48278dd 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 673d0ed6d1..7a5ee41ff8 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 58d7b40ef9..f273abf31c 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 9f5016e156..7e0a6087cb 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 f6b49738a3..2c43aa9d88 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 adc8f908f1..f71135a404 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 c592cade33..246c991905 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 7a4a81e726..6b5d02a211 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 7197808c4b..aee9675092 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 cca36c6565..f7a8d12a95 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 2ee7f310bb..a9416312ad 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 f5da4d9178..db3f481b55 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 857af3f92d..4326c97a24 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 3afc3e0e18..1a06f9ff89 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 a23ae756b2..a74387a3f4 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 32baedf12e..0606fb0bef 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 3d2e8d58ca..b9ed8f63e2 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 007b472165..2ae1c30a58 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 6b98e67345..8702193d42 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 471f688843..640e2b716b 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 e322463663..b8c1652f40 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 f02d873600..6f028252c5 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 eabe26c857..7e56ad50b9 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 d617c9a26c..59c485719c 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 f6ca6a5fd8..430deabcf5 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 d1dd01b87a..91e8e03ad6 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 f8c6c2b257..42d8425576 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 66eb4c6c3e..bf2b259100 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 8873636d86..6ed7a21be0 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 6376fb7275..87834dbf1b 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 312ca589f7..8a0f12b4a8 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 2d5e31f158..a9c0f94523 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 45a37f4e9c..ba8b049e87 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 d1a63938f9..60fc60b4e9 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 758989a2e9..47f293f5bb 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 b6df399637..898ef2e3a5 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 b43c66c5f9..acf0e28b8a 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 992acbe464..2028ee0ace 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 95142361ea..ba74135dda 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 a07516fcaf..1bc412436f 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 e190013b48..195fdcf27e 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 58869455f6..939a04910b 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 d7c544655f..f609ccc380 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 5e2f4f7666..d9934d3d7c 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 20754352eb..d89c0e2266 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 11f96c28d5..5b5938acad 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 3be1186626..e5edb12e98 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 7f9b45afb1..8575c23006 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 0a324d8bbb..6533f9f9e2 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 0801338ceb..25b9d7cae5 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 798bce4b4b..ad414f1eba 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 0ceb5f5c7f..4bf9f4e471 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 6fe9e775fc..6a84676919 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 413e3cf10c..f77534ce04 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 b6363d57e3..6bb215dc2f 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 59f0e864a3..d1af748243 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 cc88f6e429..a0b4bc4a15 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 f0d99d865a..4cd7f8ed54 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 3993883ecc..8391e49a28 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 2e3b371570..97a0b85713 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 0b7cdb2d2c..843daf97d5 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 54a7105fe3..17c0d30f7a 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 05f9d279b1..adf2524588 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 4c882b2bb3..235ff89316 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 1b9fe0a222..5fdf6338aa 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 7e93c2fe9f..2eb4f60fc0 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 32b5bacee2..a6041e01c6 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 8ce89d95d2..3d198f9dd9 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 46d3bf1da4..516852def2 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 32b4f8ce15..950211e9b2 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 360d3b5304..a2fd69ceac 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 6a78f683f0..78a5dd6e1d 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 15978699b8..b44d52211e 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 c6ea80174f..36898ad1be 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 386f892ed9..61769ee279 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 a7787efd00..fe4c94e896 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 91868ad3f4..51f52b419b 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 89b5155f54..0b6240bd98 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 339f3085e0..b1d3711727 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 3b1dee392a..07f39f2fbe 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 430a8bb027..acf73fb8fd 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 4f159c351c..63ab584db3 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 be5d27f0aa..32e9b82766 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 17565890e5..22b31b7cb6 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 f411d78179..3030a7ff09 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 82d4cfce0b..5ca2b42dbd 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 87dfd06a14..63a62f4fc1 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 38e0626eef..1d99995b01 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 5628970efd..ab687b7d61 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 89f00163e3..6f2f75d30a 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 9979e80ac8..d01efdeb83 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 ccdeb80b13..cda028d5e3 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 fbfa343392..372ed6d6c1 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 629e4b310d..6d56f2fd62 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 8d5fa38999..7c40ad0267 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 a69e68ea68..916a72b757 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 c485d1c034..ebfd177d97 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 b178a3c903..4b2117cfc8 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 554b322033..8af162e48a 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 2861541d8e..60201730b4 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 321a17e6a3..f1a7e52a4a 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 31303dae2f..2fb04aa567 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 ffa9b54952..a5c02474d0 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 8e86e2d766..78869cc489 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 a038cbbe3e..0885215d87 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 b6e8ca4790..0fd55c5093 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 b06f066c55..b5f3a72216 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 20f5c5af2c..b990d3c0a4 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 e40db9de7c..dfcc243b6a 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 c381a70180..08717d2bdf 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 3eb6c56f6f..cc92491605 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 0aad72d433..082c0cc5bf 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 9e430a342f..0ff7668ea8 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 ed3fb1a7c3..94b3ebe752 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 4b51d10880..0ac745ad1d 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 770d62e00c..8dcc59e4ab 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 c4809cb5b7..cd1675f003 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 d37a4a6651..2efb9557a9 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 ce7e12c360..2edfad3f0d 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 df5970c150..b4a3db18b8 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 d8349aba6b..414a167813 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 e1229186c2..89992c98c9 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 545feca668..b8860022ff 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 6c5efd05d9..4fa324ebdd 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 edc4565201..44332f4b48 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 9001665d27..17f4667027 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 184b61b4e5..596e24663d 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 20641e561f..d6de5ad4d9 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 1f8f55744a..58ef49215b 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 41d390e606..9044a8477d 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 df65634c5e..cf70fffebd 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 e8c8874e4b..da1208a7e0 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 0be1e98867..ed306efb07 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 6f8a7e1211..51f776e22f 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 782a629110..634a5214ee 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 565b817447..de27c52e96 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 5224d55239..2e425be1a8 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 4a60c0b633..efa83ef2e6 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 4ae1f56f18..85820493c4 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 17aaa2f259..ff958e3704 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 ea6ef3c81e..577f1c2213 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 7c4b879fb1..7e9d5b98c8 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 0193ae76fc..c5626e33fc 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 217171f746..f9e070170a 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 90e7012ac2..2ea3ed5946 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 57b3c49fed..aa89e80f4a 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 fe94441ea6..d90c370aac 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 f6bea0bf49..da36214761 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 e5e1c4debf..c8a65d793d 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 9cca570f4c..c692d99227 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 c5d2476899..ffdf208d5b 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 79af95303f..1ee104b896 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 ad33a105cd..34cfc0f75d 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 1a142bca4d..0fd859b203 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 4852ecbe62..79e8f21840 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 700cad7fb0..031de089cf 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 85fdd6f7f1..1e74ef9933 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 d5206a34a0..0292e54107 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 44c66f68c5..3a8a680f28 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 d9c47d97a5..10e0f7ec21 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 a45c24e095..3b296582a8 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 318c50196c..20c80449a9 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 8b059c1333..3bde3a9618 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 bc5991a1ad..5c3ee02506 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 de2a0294bc..1a077ab405 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 1c87f514b9..ddf9328eb3 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 302ea26ae7..58a0639be3 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 3ea5b6777d..8ce3264d14 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 25e23072fe..a25daf3228 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 27b0d6c7fa..fb976fa8ed 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 f06cfbbbc9..c859d4089b 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 4d04c5bb97..0bb091ddfe 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 0481da7d48..97bd48d0f4 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 9bfd573484..0f78a0428c 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 f3f8e54517..9c51d0d918 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 0c8eafde47..bdce0babf2 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 668a512c56..2ddb2f8fb2 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 5e37060824..3e9e25c799 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 b388603529..6f7fe3054f 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 caa2976ee5..27b206e3b3 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 0c384f71e0..4fc8bfe221 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 fcecae9144..7b6b712ad7 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 954030cd80..efab4ba7df 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 075d05d2d7..94ce49629e 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 48963a7511..0edacd55f8 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 8fd5aec3de..8f6660299b 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 ac05de4c3f..7f2cbe4294 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 38693d1adb..e1dfef82c0 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 b52b1baeb7..d4d6757e28 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 b2206da3d6..f10e3f4586 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 535ddc3dd6..9563c8558c 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 1e2d5fe86e..fb70bae00a 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 bcc928c2c3..a03d4492b0 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 2c5b1b9e7d..eb44e4ddb9 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 6c33ba6236..e3ab3a8b0f 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 6f25d17985..8293e77ee1 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 d526da7627..bbbe8d804a 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 7c091c67c5..c06663ba39 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 6b00aaece8..507f7fe2be 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 025f255a74..6a21f615f4 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 e4c00be5ec..2ec1cd8876 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 1e9ba35a74..de4b95d8df 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 70b3598aac..fcf558d7b3 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 aa0f0c1923..91c7343311 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 a5271906bf..fa992fcda3 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 63969f8694..e9dbed5ce5 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 e44973f27d..f3723f122f 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 3d903472ae..0e962dc0c4 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 5f9897e2ee..20cebcc840 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 0e4b234b4f..ca0b7c1279 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 02cb7e9d39..e9399d377c 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 10b324dcf9..e23bc5a06a 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 2507e04068..183a3b5af1 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 6eee7eeb30..b0d30e54b9 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 65df48533a..3645b75885 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 e124780807..5795cb7c3d 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 bd60566548..d0440871c3 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 dec013a248..0e29168897 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 302f0bd9e7..db3121dbd3 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 4cb6860da9..7007062249 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 fa28f5aeb1..12b381fd72 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 d2902194c1..31bfae35d9 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 72eac6329f..13326efe04 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 875e44c6f0..7b9eb60885 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 cc28d67e09..177a75f01e 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 bfc6d94e99..9479b50b68 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 680ab5ba56..e6d1550b77 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 6a54f79681..3a3393804f 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 24f1c8f9cf..61815d1e93 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 4d7b2508f6..4341cd5cf4 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 eb793fed13..cf172ba893 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 17c6a312c7..39875c6c05 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 192ab8e525..9ffcadec3d 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 1150925693..0ab25361c6 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 1c87aa8d1d..93493763a7 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 67dae3dd3b..4e66cbc4cf 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 593bc84590..cc38053168 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 f559a9f319..418f0a3bcd 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 70e4489159..e2294c4fed 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 1b72a8e908..188c11017a 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 d390324498..f21d2dd437 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 a971149508..6a3b63dc04 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 a92a77a1bc..7ba3626721 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 1a910d347c..6089b3606d 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 80172dd685..a73cbb01ac 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 70bc9848c0..bd5ffff3a2 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 046a06a890..28bc0bfd75 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 027d652086..0684a53b3f 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 6adecb1bf4..2aceb7019e 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 093d536c3d..d8b3c96b2b 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 dd86ed6f8e..a6fb13c8f0 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 42a33ff0cd..4dea6f8b18 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 42c687ed7b..008c0f85f1 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 54f0071efd..1b5e6a3f23 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 5aa6f84e51..6232d2ee41 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 7cf1ded543..50805230f8 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 c0483cfd96..ea816a426d 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 27779d8efe..370bbb936f 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 c19785ccaa..b70c1e4237 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 35e74fe68b..6cbc956d8c 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 f230226b89..18bde9e30a 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 e53d5657d6..a15724fbb6 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 0e4677d461..1d699bc38a 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 591e0dd75b..6d887cd7d1 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 c7e425b32b..8da1c6a159 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 cf382de0ae..ab937a595e 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 c1489cc0f7..9087c7d8ef 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 d0701f564f..e7b6e40ae3 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 97c1d9d86a..921957dacd 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 c9b89ee8f7..89cefe5b3b 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 4b4ed3450f..6f3be6d060 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 8765785da5..665ca3aff9 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 552a8da97a..d41ff5365a 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 74c73b303d..cabc3fa2cf 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 757b0877a9..7ea290bef6 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 6ce7dd1b2a..27e3bb2f03 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 e05edde420..5ddada9bda 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 467db34a1c..03a068568d 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 ed601194ea..5f575f56ef 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 c5e433c850..6ec7f7cff7 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 f52e13379c..4c6b07207d 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 a67b042b56..7b713baa21 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 f83c10096c..1c792153cd 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 ca9d6ddec3..94375cf1b8 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 40d1263186..111e094460 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 ac92bbc486..74bc91c661 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 32757d6d2e..e8e6179f19 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 ca4b98e326..976de08fc8 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 59cfdd51f8..315a0ac33a 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 4b3640fae1..c3282eca95 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 fd05551a83..8b9823ccea 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 401b5f3f89..a180f2b456 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 e9bb69f2c0..d8f8f0bcc2 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 ef4d03946e..9a5d074e4d 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 bcb60fbc82..5e3b13ad01 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 dd728d3549..787dfe4975 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 4e53bbf20a..055359846a 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 08f9459a9c..c2abc1a16f 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 6f88b5b340..4896947e1d 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 1353cc1816..1aca2dcbc3 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 232bdb7e9b..6c75be8ce9 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 23694f805c..86ccf90cda 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 b1f0efb11a..246177c360 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 123bf7a560..f1377e0281 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 7c320b3a19..9932a5abb0 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" 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 7283400920..9254365e3e 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 fd4870974f..7097a376d6 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',''); 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 53a8fb9638..dd46f7889d 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 3cb4d3dd15..08b429a555 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('/')); } 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 4562b3ed08..59f0240d99 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 # 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 927064012b..6543a0de5f 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; } 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 122ab3fa03..d1000e7bb9 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; 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 d1000e7bb9..a98cfda208 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; 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 0000000000..942a07dfcc --- /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 68549d14fe..71133145c8 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; } 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 6902d311ab..ed6391a588 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 7489127935..a88eccc0e4 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 253953e5c5..5f6208bffd 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 94d27f5501..52a970d68b 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 77c3fb854b..8bef515116 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 3b539f7fe2..81440044ad 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 41e885396d..5db20885a1 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 d0aaba8477..f224d863f2 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 cafbf8b0d9..31bdca83b3 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 f3cafe7a6e..9b01c579b9 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 6f517e7c90..05b06fab6d 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 3f47cdeda0..34e761cae7 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 1b87c57679..988d5ebebf 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 5d21c869ed..437b69629b 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 f19133fabb..bd2b457e79 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 12b60c3972..867f49d2b7 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 df6f19e4e5..ddca1e6ae9 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 0081251250..011fc25e13 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 40ddac8dbd..00d87b41f4 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 f024808d5a..ddb538244d 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 63b2b436ea..2b08f0d667 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 e195eb4ba1..192efb5851 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 eb25bb6648..f29ac6635e 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 e500fe54fd..ad7c0357d0 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 0a3a474d3e..f2b3fc2231 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 81d1cf9987..07ee317ad8 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 25bef73f5e..cfe1b9b844 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 0b17a43cba..d853a61f33 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 b7d203caa1..09707722e7 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 78a9b05024..803e8d9d96 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 bf61fd2004..69260fef1d 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 b934bec399..128c7d3fcd 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 a56fe6475d..46532b3165 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 bc87fa7673..29f58f4aa8 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 baa1264b2f..bb4f2b7d28 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 74b3246d05..20ccb5b258 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 3848fb765d..3fd75c89a0 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 380d2ad0e6..254cc340b5 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 32b91213c2..ff1381a5e7 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 f4c82a2a13..3b8a0cc2ee 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 21e1e2b42b..2414446f6b 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 f3d1dacbdb..cc8ccc0c43 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 095ed8b872..82ea2ba831 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 f914ae4694..8eeec23519 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 8e82ebd7f8..fb5a03244e 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 e3716085af..c9b5668a94 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 7ca1084cba..d9f7b34e1b 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 4c929a0feb..68e2d992a2 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 9ce3a57828..9ee3bf82ac 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 e20ff07ce6..e176331e71 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 9c2f882ee6..fb5b30b257 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 2fdd1c3633..4c96140439 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 901b021089..8906b9ea9a 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 4d2a2eae5c..76ff15a684 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 0a57a9cde5..c58d72ff7b 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 5788c4b356..86db3791ed 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 d36b308929..f546eae2f4 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 8c3ebe3174..9ea9f8090a 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 0cafa6fa3f..75833170a8 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 ee14365086..d733495204 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 14ec9de669..ee6c908016 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 360b6a0075..704931beab 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 63aa4bc173..eafd16c742 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 c0a227946d..3a22e6e795 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 3e77cbaf0d..d23d0442e7 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 d95f5c114d..5e8d92bee7 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 e6f5ed9d78..b32c7aed8b 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 3329cb8d3f..1f34294987 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 ee99969b61..35c67d411d 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 36c2eaf374..7c3e231b42 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 47a0b7c931..882763d90b 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 0febaa69c3..e90bd78c68 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 8694bc3045..5e3dfd1d6d 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 b193c6a20d..3ec1822e0a 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 81d2d4aaa2..39c8ba7b09 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 b3b252cecb..4966852761 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 d1dd4477eb..b5047217be 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 36c187ac1f..4705bfd661 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 10fc41ca5d..d7c7aeb484 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 af00f22b58..1498082f98 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 d150c9ea1f..bd5e4d7211 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 518f1aa748..c58c338535 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 393a83e49f..2925095e77 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 7522d7cf10..081b5b96b2 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 b6072df48b..a20ea25871 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 b06796c7f8..fb3093c73c 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 d6cfe45855..afcc88c467 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 d15ee15a56..ccc9acb85e 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 6098e170aa..4196cfc39b 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 f8360c568f..10f6a92df0 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 d1fbba123f..ef64fb25bc 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 309bf27595..a61540a499 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 7ceb81b1df..73f08aaeaf 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 38371de9a2..b781a694c4 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 55a57eb043..f713dc9520 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 b19e65069e..499fe7a5ab 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 e55df6f34d..f4c97b1fb3 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 9889535bc5..894fdd59e1 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 80a9c4ce8c..452fc98362 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 d3fc64da1d..2334a6d704 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 6b8a1a6a30..bb60932db4 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 3a028120c6..3c175bf08b 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 eaa87e4858..8336716d10 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 7a064fb6f3..9508abeb49 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 b4100782eb..3875ee7028 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 ef1b9977dc..26df699be7 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 8a72120f5d..e05f305a34 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 9cfbcf417e..9b39ad5bc7 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 d4aef6810b..c488eaa089 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 9b35e73384..479d7d74be 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 8fbf735990..6822bd513b 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 fec836f5f2..a849873ab4 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 924acbadc4..eaaa23e522 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 40f6878315..4e29e09f93 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 6448c511db..4533c27b40 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 e953455fb6..76f8ff093e 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 e3d1016a35..fb9e9ec5e4 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 6c5085952d..42feceeb67 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 cf57d1175c..6c08270baa 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 c07fd0d316..c3b6f1ba02 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 bb43b85a2f..b0ad35f3b1 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 0ea609f1c0..5ca9cbdde3 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 1d550e0201..4103f63f2a 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 8499787001..a5d1e8cdd8 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 6113a81c87..0937931cf1 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 633c23e05e..252378f443 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 4075125d91..360feb9330 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 e56b4fdfcf..3febc63ea4 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 304cd86c00..b855eec29a 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 2b0ef136fa..f7dac2f726 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 0d033e3d96..d28abc7639 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 8a90923340..b6e8cb6e24 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 f5ed84b74d..3910c3caed 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 f1faa72a3f..ca85f0617b 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 56e299b913..e6e7382d6e 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 1cc51050fa..8d9195be01 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 3a5b7779bd..621c79d147 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 a8224ed9b2..21cf84dbff 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 9e3677fcdd..b046c10a83 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 54e6f84456..aac2a6e7a1 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 a9ac1b53c7..b48fee0a48 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 9a6956a551..89080126f2 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 c09193d7c9..713fd39985 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 509eb435e3..a6aa61f34f 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 b5f034992c..66e663a4f3 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 14a8a6d025..ee71e0b7b9 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 4d175ceb53..f05df1e9f7 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 b801dab501..6530f62337 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 3bb2c74afc..0120a65d47 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 2a3545238a..58d8433e2a 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 af5ea17cd6..299c394b22 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 38f654610f..a2c93dd4ca 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 e383782a58..449ef186a7 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 8b04247658..512b7f10e6 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 bfb9c872a9..c425552f2c 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 06fd8fa8cb..d05867275a 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 7d5f29bf0a..272e625ddb 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 a5f08d463f..67bb78cc0c 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 08e7fed71f..47dd91ddd4 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 c4b7ee0fee..38cef14b2e 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 4ae5147bca..29b7623755 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 684d45ae22..1f2e545aed 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 c03d12e268..1f4976803d 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 432220cf0a..4a1ce25559 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 23c264433c..afb40ecd57 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 750805bb5b..cd71224bdf 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 c25f1a4514..39c66c1c09 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 5d626e7ef4..6b49d7644b 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 96d097adf8..af1943fa8d 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 833ad6436c..826742d7e5 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 7db359cc67..ee63494bcc 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 e1a1fbc780..5ee7399de8 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 3093babfb4..120eea30e3 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 5d16ab1f58..a8fc8dbfd4 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 e9072e8a08..8c17f3c319 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 e287c5fe8f..8298638ee4 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 16cd4bf346..b4f222f17c 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 118e99b7e5..6c912156a4 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 f8ac471b2b..308868022e 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 fcb4fb7304..9f59d45d6b 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 f2b442e6d7..2574788614 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 65a5177cdb..7952b00e05 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 7ca4969c3b..8c9b155be9 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 fac04e71f0..3af9e1f123 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 02db02f21f..4528ac0305 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 c05a173698..c439b9bde6 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 19364072ed..2df06277c0 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 ebc29ae86c..0bd1775a0e 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 ea61959f14..e60b51bc5a 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 26b1d2e455..002cae68a7 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 bc1e33cad0..3e952ca8b7 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 160a54c12c..998e396cdf 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 be74cef536..f580f34096 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 c31be35ab0..0dda0bb1fa 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 76b57d1474..ad37f5cf77 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 830ee08a23..75e0e76e6b 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 b09b8cf248..9a6213278b 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 516a9ae137..f660d2e85a 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 d78ba4b31e..3a6821a556 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 d38be332ec..1864e34b41 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 b4c9764d4c..0943c5053d 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 13c98472dc..40ef0e3688 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 f04d0346a5..8f87d09748 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 4b3ff1b6ca..22a4ec2dbf 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 dbd84ee318..a0d49bc7b5 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 9d6bb20c70..a1f2ce2c33 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 fe1b763855..c9856ed3c2 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 eca8b4b8f6..1aa675768a 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 2636b71dfc..995eae2691 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 7879939ac5..dbe6e8158d 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 749189c571..35a5ede892 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 be8fb9a574..eec98f5b5a 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 f4afa3dfdb..071563e748 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 9e877f02f3..cbd68a6929 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 40f8eedd3f..852012e9a8 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 a46f1e833e..a053d59f28 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 330ad870c1..45f0527d04 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 34340946f1..9b17fb7ddf 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 573c7054e9..8211b5cb63 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 b5018ef31a..5f8a56defc 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 1ab495a8a0..c5133e3f4d 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 6ca4b051a2..a597260cc7 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 92852949b2..59bb25868e 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 1d4fbf8f8d..434621feeb 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 6a3e978763..fda6115e7e 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 fcdf9ed449..4c08573739 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 cf8defcbff..f6058d695d 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 579178888e..897eaaf047 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 a3c37675fe..e2cd88ed28 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 ef76904aae..38c5ab889c 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 78802e5f8a..0d372da2de 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 7d3a36edcd..9f5102f776 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 486239368e..3aa9f86baa 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 2a02df7abf..c8f9bd471e 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 9641d4ea4c..0f42f27db8 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 2ed082766a..c302f6ac22 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 929e166861..73c55e6687 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 00e48278dd..ff1dff5008 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 7a5ee41ff8..67458013c6 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 f273abf31c..1b36729b82 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 7e0a6087cb..aed0a9b356 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 2c43aa9d88..230ac84ddf 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 f71135a404..ff870b72f4 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 246c991905..7f4cb79861 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 6b5d02a211..f55ee1983a 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 aee9675092..094b306385 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 f7a8d12a95..4b6b2421e3 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 a9416312ad..bcd4dd09a6 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 db3f481b55..97f5afb005 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 4326c97a24..2942562fbd 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 1a06f9ff89..777644e2df 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 a74387a3f4..101547c6d3 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 0606fb0bef..db446f07e9 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 b9ed8f63e2..f2cd849e91 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 2ae1c30a58..89d32881ab 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 8702193d42..b3159431ec 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 640e2b716b..f901559955 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 b8c1652f40..b0692cbf36 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 6f028252c5..ddd67a16e7 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 7e56ad50b9..6f4ed03b7d 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 59c485719c..42851dabc8 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 430deabcf5..6c3873f36d 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 91e8e03ad6..1eee07fc30 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 42d8425576..f6eafc5ae4 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 bf2b259100..2138146dd7 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 6ed7a21be0..5e78967b48 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 87834dbf1b..6db17d8f18 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 8a0f12b4a8..9813576197 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 a9c0f94523..5198dfd760 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 ba8b049e87..da8c67e6f9 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 60fc60b4e9..fdb483bf4e 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 47f293f5bb..0a62206af8 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 898ef2e3a5..d48f11b626 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 acf0e28b8a..1285323cfd 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 2028ee0ace..fdf516c6c2 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 ba74135dda..fdee5ab7ab 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 1bc412436f..fbc351386a 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 195fdcf27e..2ba0fea6f8 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 939a04910b..b6b0c94cba 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 f609ccc380..86f5331f26 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 d9934d3d7c..6c8cee48df 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 d89c0e2266..e070da099f 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 5b5938acad..8bdb9ef091 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 e5edb12e98..4119805384 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 8575c23006..c567f174ac 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 6533f9f9e2..36ea3e28a5 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 25b9d7cae5..8e64fadde2 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 ad414f1eba..a049861851 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 4bf9f4e471..91f99d2acd 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 6a84676919..35955ca29e 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 f77534ce04..574f121b31 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 6bb215dc2f..6237757773 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 d1af748243..592f9d06fd 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 a0b4bc4a15..86cc58c0ec 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 4cd7f8ed54..00599e9e7d 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 8391e49a28..e0fc10d0ee 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 97a0b85713..95bb08e798 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 843daf97d5..f36b1e9197 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 17c0d30f7a..5266e5cc80 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 adf2524588..c1e3cd3bdb 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 235ff89316..05e585c9a3 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 5fdf6338aa..b9f47dbf7d 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 2eb4f60fc0..502cd25d58 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 a6041e01c6..f23c096f23 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 3d198f9dd9..ceebe7b252 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 516852def2..af3f8ea6c2 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 950211e9b2..a0e26c4841 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 a2fd69ceac..0816d47395 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 78a5dd6e1d..12afb27937 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 b44d52211e..ecaebb67fb 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 36898ad1be..1f1f3d9e98 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 61769ee279..9130e69d5d 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 fe4c94e896..0f2caee682 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 51f52b419b..9d9071a4f9 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 0b6240bd98..8da002ac16 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 b1d3711727..3d28946888 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 07f39f2fbe..782167167c 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 acf73fb8fd..14971bf775 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 63ab584db3..0bec534200 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 22b31b7cb6..91a850de16 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 3030a7ff09..8597b94eab 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 5ca2b42dbd..c4b6c4b872 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 63a62f4fc1..3966005977 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 1d99995b01..ff9e9d6101 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 ab687b7d61..9ac83f42a9 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 6f2f75d30a..5237506960 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 d01efdeb83..e929f213a8 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 cda028d5e3..eb80bb0632 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 372ed6d6c1..c45647d741 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 6d56f2fd62..34a18f6335 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 7c40ad0267..75ccb8b536 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 916a72b757..acef033687 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 ebfd177d97..23434cff91 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 4b2117cfc8..1a906d0e01 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 8af162e48a..606b5e7a28 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 60201730b4..c5a0091ed2 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 f1a7e52a4a..e53e22d20b 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 2fb04aa567..3544bc2f32 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 a5c02474d0..dfcb460322 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 78869cc489..e76743dc03 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 0885215d87..bccb46b3ff 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 0fd55c5093..822e891022 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 b5f3a72216..2bc03db43d 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 b990d3c0a4..0a4ae17db3 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 dfcc243b6a..f566ac2dff 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 08717d2bdf..d55214a373 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 cc92491605..e3db7a3be3 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 082c0cc5bf..6b4e97d60e 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 0ff7668ea8..569064633f 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 94b3ebe752..7329b189f1 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 0ac745ad1d..c66a6e7950 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 cd1675f003..0104342fa4 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 2efb9557a9..593b11afc4 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 2edfad3f0d..219dd6254a 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 b4a3db18b8..7eb4bf92d9 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 414a167813..ba19ac9487 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 89992c98c9..adb52d6386 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 b8860022ff..707ab0fcb5 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 4fa324ebdd..0796b5b764 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 44332f4b48..e1b84fb835 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 17f4667027..10fc28ff5a 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 596e24663d..258e0ca613 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 d6de5ad4d9..c8b4c62d96 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 58ef49215b..6c433390b3 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 9044a8477d..7d9027e2e1 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 cf70fffebd..2dfd6158cf 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 da1208a7e0..262df3a32c 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 ed306efb07..c07e031ff1 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 51f776e22f..b273ef97b0 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 634a5214ee..a868777969 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 de27c52e96..ff8cdb0cc8 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 2e425be1a8..c5c31e0c00 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 efa83ef2e6..19890db864 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 85820493c4..844cdecf99 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 ff958e3704..50cff7a85a 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 577f1c2213..1292fc35b5 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 7e9d5b98c8..519ff461dd 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 c5626e33fc..5ea1ae6326 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 f9e070170a..3346f4eb04 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 2ea3ed5946..926dbd1f5c 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 aa89e80f4a..2c494200e6 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 d90c370aac..cb6e479e7b 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 da36214761..0ffd20f6c5 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 c8a65d793d..e42f60061d 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 c692d99227..bf2da10b20 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 ffdf208d5b..67d76afd01 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 1ee104b896..826709a596 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 34cfc0f75d..1cf2f14659 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 0fd859b203..cdb6eb94a0 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 79e8f21840..c8a0a6b1d1 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 031de089cf..d7fa858d40 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 1e74ef9933..dfca533bff 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 0292e54107..2047192b5b 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 3a8a680f28..9a68d49663 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 10e0f7ec21..31cd3e6f86 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 3b296582a8..6260c0901e 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 20c80449a9..be3e79faa0 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 3bde3a9618..e788a35745 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 5c3ee02506..9c70d10309 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 1a077ab405..c254087ec9 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 ddf9328eb3..e835f2b4aa 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 58a0639be3..254395350c 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 8ce3264d14..d1ea66c748 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 a25daf3228..cb7a8b2f14 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 fb976fa8ed..48866f92c6 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 c859d4089b..1173aa9e39 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 0bb091ddfe..b59e1672ea 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 97bd48d0f4..673b9345b6 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 0f78a0428c..990851e3f2 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 9c51d0d918..843f87b4b1 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 bdce0babf2..671cee2907 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 2ddb2f8fb2..7f40175fe3 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 3e9e25c799..f3737be676 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 6f7fe3054f..9563b6a581 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 27b206e3b3..acc93a4f25 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 4fc8bfe221..99d25bee2e 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 7b6b712ad7..e405815f7c 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 efab4ba7df..fd2119406b 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 94ce49629e..6791e29139 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 0edacd55f8..d3f477f792 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 8f6660299b..f04371d52f 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 7f2cbe4294..ea161b9e37 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 e1dfef82c0..23d50dfc23 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 d4d6757e28..a43f58cbd8 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 f10e3f4586..dd214946ec 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 9563c8558c..7d36543ab6 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 fb70bae00a..c522bfd38a 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 a03d4492b0..6466456e10 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 eb44e4ddb9..25a5e0d656 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 e3ab3a8b0f..0d3f39e3ee 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 8293e77ee1..0710b6acb0 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 bbbe8d804a..0f47f36285 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 c06663ba39..01862e8281 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 507f7fe2be..244414adf0 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 6a21f615f4..7b767bdd60 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 2ec1cd8876..a84c4d0a0a 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 de4b95d8df..5344ba5c51 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 fcf558d7b3..4424fa23e5 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 91c7343311..df8be782a3 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 fa992fcda3..594c124bcf 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 e9dbed5ce5..2d054b1c46 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 f3723f122f..b10ad83d2d 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 0e962dc0c4..511fe56c30 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 20cebcc840..f7be70cdd6 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 ca0b7c1279..fa019447a5 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 e9399d377c..70f7eeefed 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 e23bc5a06a..ab82f9532b 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 183a3b5af1..1fcc1b13f7 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 b0d30e54b9..1d928317ce 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 3645b75885..5b573e7250 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 5795cb7c3d..16fc4f7ddb 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 d0440871c3..e3bb913d35 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 0e29168897..3137d0afdc 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 db3121dbd3..315a63e26c 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 7007062249..1e22f4b7da 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 12b381fd72..c8c6256427 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 31bfae35d9..71106f1153 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 13326efe04..9300ffc6d0 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 7b9eb60885..7ecd830f54 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 177a75f01e..28360882ec 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 9479b50b68..6476759c26 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 e6d1550b77..7e5ca80be6 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 3a3393804f..39bb66e5d3 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 61815d1e93..e1f44e0ec7 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 4341cd5cf4..7b152eddd6 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 cf172ba893..121e631d1b 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 39875c6c05..5c2df225b2 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 9ffcadec3d..8329473e3a 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 0ab25361c6..cbba1f4179 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 93493763a7..ae682aa456 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 4e66cbc4cf..2ae9532843 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 cc38053168..741556483f 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 418f0a3bcd..b4e85d7f7b 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 e2294c4fed..2825376268 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 188c11017a..6326f7139f 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 f21d2dd437..fb2e2e216d 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 6a3b63dc04..b96cc4683b 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 7ba3626721..0fd9436787 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 6089b3606d..15d2e5c62b 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 a73cbb01ac..b9efc62b01 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 bd5ffff3a2..03a2c47e09 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 28bc0bfd75..c23bb2e315 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 0684a53b3f..53f052cae3 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 2aceb7019e..842844cd40 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 d8b3c96b2b..a355eb4626 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 a6fb13c8f0..738b5839ff 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 4dea6f8b18..d5b5d31943 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 008c0f85f1..16a9086324 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 1b5e6a3f23..b5011acb94 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 6232d2ee41..811aca80f6 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 50805230f8..370a880602 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 ea816a426d..4b24b992c7 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 370bbb936f..610914ea2a 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 b70c1e4237..bfe36ecf30 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 6cbc956d8c..bc6342b1da 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 18bde9e30a..d72ea3f5ed 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 a15724fbb6..888a3128af 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 1d699bc38a..52b8565ddf 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 6d887cd7d1..3c3cf8b34d 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 8da1c6a159..cd94e8a414 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 ab937a595e..df35efcde2 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 9087c7d8ef..d1dce1da9f 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 e7b6e40ae3..15469440b0 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 921957dacd..a6fc941993 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 89cefe5b3b..4b13012774 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 6f3be6d060..a4c8d129fd 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 665ca3aff9..f67e5874d2 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 d41ff5365a..4ff03f1406 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 cabc3fa2cf..c414ac1915 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 7ea290bef6..a653b79dac 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 27e3bb2f03..da1bb9271a 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 5ddada9bda..f518075695 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 03a068568d..57dba764c2 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 5f575f56ef..591ce747f9 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 6ec7f7cff7..ae02466077 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 4c6b07207d..7c48040ec5 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 7b713baa21..2d579363b8 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 1c792153cd..881aea3363 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 94375cf1b8..abe654c88b 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 111e094460..0560ca6998 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 74bc91c661..1e3ca9bbcc 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 e8e6179f19..9a08aea77a 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 976de08fc8..4c2e9855d9 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 315a0ac33a..c54990d151 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 c3282eca95..e2853f2f35 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 8b9823ccea..4d537e8966 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 a180f2b456..c87bca5396 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 d8f8f0bcc2..8cd3b5d553 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 9a5d074e4d..c1476ad923 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 5e3b13ad01..e9161ca752 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 787dfe4975..04b5de8a9e 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 055359846a..a8ba2430a2 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 c2abc1a16f..466c0f853b 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 4896947e1d..cdaa641ec8 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 1aca2dcbc3..105b73d51d 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 6c75be8ce9..e45bdeb431 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 86ccf90cda..6bcfdab8fc 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 246177c360..f4b86ca751 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 f1377e0281..05300a3ee5 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 9932a5abb0..f9a6bb3549 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 7f8827d17f..2073f54523 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 f8876ca704..9f147f8f2d 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 21c10abf0f..63fb86485c 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", 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 984c2bcf14..fecc622d96 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" ); 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 d97811bb79..ca3f2554e5 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 e39e068cc5..0915391894 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 a22c139c50..b2045bfcea 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 f974dd9f59..f9b1c5ca7b 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 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 b2045bfcea..0d30dd8e7b 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() { 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 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 68977ad077..c96ca42135 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,9 @@ nbproject .well-known /.buildpath +# Tests +/tests/phpunit.xml + #tests - autogenerated filed data-autotest /tests/coverage* 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 c96ca42135..6259482c00 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* 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 4e6642b6a2..a316051d5a 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 442872af9c..2e26ccad2d 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); } } 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 2e26ccad2d..8c157d003c 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); } } 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 a316051d5a..7802ead241 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) { 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 a420fe161d..d80613b4b1 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 31bdca83b3..3e2a0420f8 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 9b01c579b9..a12ca80f12 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 05b06fab6d..7edca4cb77 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 34e761cae7..4898a1ad46 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 988d5ebebf..5c502f8461 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 437b69629b..150b89490d 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 bd2b457e79..7016b07b45 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 867f49d2b7..c673a183e3 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 ddca1e6ae9..2df1ed86ae 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 011fc25e13..fc7c0813dc 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 00d87b41f4..b00a21cd12 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 ddb538244d..928620c8c8 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 2b08f0d667..6b77c507fa 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 192efb5851..ba5eafd89a 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 f29ac6635e..0425d5bcd1 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 ad7c0357d0..7d892caddc 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 f2b3fc2231..d2244f8f26 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 07ee317ad8..b95e2af854 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 cfe1b9b844..f602aa8001 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 d853a61f33..50c519a6f8 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 09707722e7..f1eaee6bfd 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 803e8d9d96..d814ba9410 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 69260fef1d..bdea723e5b 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 128c7d3fcd..044795a52b 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 46532b3165..12302412a5 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 29f58f4aa8..4a591c9166 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 bb4f2b7d28..a2a5ebbb22 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 20ccb5b258..708f20fc33 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 3fd75c89a0..b18273dc29 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 254cc340b5..30c99fd948 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 ff1381a5e7..258170d04a 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 3b8a0cc2ee..488533bdbb 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 2414446f6b..c221d72cae 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 cc8ccc0c43..c1200a5a33 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 82ea2ba831..2981c3293a 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 8eeec23519..dcfd934eeb 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 fb5a03244e..46deef94bd 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 c9b5668a94..cd1cd3a414 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 d9f7b34e1b..856f3b65b7 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 68e2d992a2..ebd413ab14 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 9ee3bf82ac..b6bb1f9903 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 e176331e71..3a490d2e8a 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 fb5b30b257..d3acf48c8b 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 4c96140439..7e99e29fbb 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 8906b9ea9a..562a37a0ab 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 76ff15a684..991a0e37e3 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 c58d72ff7b..5fab9dbda4 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 86db3791ed..e445509497 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 f546eae2f4..4b5340d0ba 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 9ea9f8090a..5bea91c726 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 75833170a8..7150bd6425 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 d733495204..1265ff4284 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 ee6c908016..fa812cc588 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 704931beab..a712dfd102 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 eafd16c742..a26ce5d003 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 3a22e6e795..32bf2873a4 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 d23d0442e7..ac03203294 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 5e8d92bee7..cfd49d83c9 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 b32c7aed8b..9c5188d810 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 1f34294987..b0da1cfe8d 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 35c67d411d..d96655c479 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 7c3e231b42..5b305c5dbc 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 882763d90b..9c4b571c80 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 e90bd78c68..79b9329c53 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 5e3dfd1d6d..408a6dfca9 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 3ec1822e0a..2c00a1416b 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 39c8ba7b09..53e2496a59 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 4966852761..e575a9af18 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 b5047217be..d35729d292 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 4705bfd661..641765eb02 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 d7c7aeb484..72762135d6 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 1498082f98..a5e4564dce 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 bd5e4d7211..7ed7abf5d2 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 c58c338535..ba9f27815a 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 2925095e77..fe391ef40d 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 081b5b96b2..f2f00ba65f 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 a20ea25871..7b1288ee4d 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 fb3093c73c..7774512469 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 afcc88c467..4f087b7f5a 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 ccc9acb85e..f7864d342c 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 4196cfc39b..ee0e8201ba 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 10f6a92df0..eb14443362 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 ef64fb25bc..da12f71303 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 a61540a499..f16709aa46 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 73f08aaeaf..df4c76d7a7 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 b781a694c4..0b98d4ec9c 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 f713dc9520..a1d4af7ac8 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 499fe7a5ab..96490ba84d 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 f4c97b1fb3..a2d2fd645a 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 894fdd59e1..ce955376ce 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 452fc98362..2fd12e9d9d 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 2334a6d704..bf19cd385f 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 bb60932db4..e627a09f32 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 3c175bf08b..1e17f88fce 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 8336716d10..651ab1e521 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 3875ee7028..0832ba4768 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 26df699be7..937cc081cb 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 e05f305a34..2633f603a8 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 9b39ad5bc7..d09099c11a 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 c488eaa089..4c337ee3b5 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 479d7d74be..49dc4d4b9b 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 6822bd513b..3f8490c084 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 a849873ab4..f1153d0a93 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 eaaa23e522..ba9405f152 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 4e29e09f93..40a8978f02 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 4533c27b40..a856cf6327 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 76f8ff093e..86c1c1ab6d 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 fb9e9ec5e4..1cb59f7906 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 42feceeb67..95060d0605 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 6c08270baa..acf4a2aee0 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 c3b6f1ba02..d7d7419fd6 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 b0ad35f3b1..09fe97dce3 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 5ca9cbdde3..d03bcb2b11 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 4103f63f2a..e54855152d 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 a5d1e8cdd8..ffbf7712bb 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 0937931cf1..c5e28c9fc1 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 252378f443..4b0628f61b 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 360feb9330..facc076fe9 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 3febc63ea4..577c3f8256 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 f7dac2f726..e4bf9af5aa 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 d28abc7639..7bee018224 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 b6e8cb6e24..7d54914985 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 3910c3caed..065623f883 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 ca85f0617b..0d9fb511a5 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 e6e7382d6e..8eeb819e80 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 8d9195be01..c31972fc13 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 621c79d147..cdc3359a6c 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 21cf84dbff..4ae449d89a 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 b046c10a83..43386b56af 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 aac2a6e7a1..3929758448 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 b48fee0a48..e12808e6c8 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 89080126f2..cfdf080673 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 713fd39985..8e91ec15fd 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 a6aa61f34f..108f9b2924 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 66e663a4f3..dbca58cb19 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 ee71e0b7b9..9ca64b8def 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 f05df1e9f7..1cda97e388 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 6530f62337..bc6d599442 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 0120a65d47..4b128fed3c 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 58d8433e2a..6795aab9e5 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 299c394b22..b1e8900dbd 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 a2c93dd4ca..b6652f1f5e 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 449ef186a7..09fb95edf5 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 c425552f2c..e00eff2f21 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 d05867275a..78d54bd5b7 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 272e625ddb..af9bdc98b8 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 67bb78cc0c..cf41c399b1 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 47dd91ddd4..518ee15872 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 38cef14b2e..be0621492f 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 29b7623755..55f954086a 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 1f2e545aed..40c4c782a4 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 1f4976803d..beadabb66a 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 4a1ce25559..30209872a7 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 afb40ecd57..e9aff1df34 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 cd71224bdf..d28e4d6171 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 39c66c1c09..8407c00a14 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 6b49d7644b..98a8bacb33 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 af1943fa8d..34d8fe556f 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 826742d7e5..89d028103a 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 ee63494bcc..d31c639e91 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 5ee7399de8..2fa14e6c5a 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 120eea30e3..c844e36621 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 a8fc8dbfd4..ada7f390dd 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 8c17f3c319..ee845f2ea2 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 8298638ee4..ed6c15221f 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 b4f222f17c..345b1c3aec 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 6c912156a4..cefdec303d 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 9f59d45d6b..82a5073eaf 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 2574788614..2160e5500a 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 7952b00e05..1245a6aa37 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 8c9b155be9..0354e57049 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 3af9e1f123..546533e36f 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 4528ac0305..ec1f077d07 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 c439b9bde6..4b67d6c0e3 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 2df06277c0..8188809408 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 0bd1775a0e..d9db452c8a 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 e60b51bc5a..c68d300e34 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 002cae68a7..e9b24ea722 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 3e952ca8b7..39182d45c3 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 998e396cdf..f94c4cebc2 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 f580f34096..824b501e25 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 0dda0bb1fa..54accf9176 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 ad37f5cf77..3b5ed8de08 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 75e0e76e6b..81912b15e8 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 9a6213278b..8adcaa76c5 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 f660d2e85a..6456e04527 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 3a6821a556..bd5f27c97a 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 1864e34b41..e925f9b40a 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 0943c5053d..52bda8e75f 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 40ef0e3688..b459b18d25 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 8f87d09748..070d58a0dc 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 22a4ec2dbf..ff4b3ecca1 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 a0d49bc7b5..fffe1794a2 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 a1f2ce2c33..859b676d9a 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 c9856ed3c2..63f11f3d0f 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 1aa675768a..00a472c3dd 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 995eae2691..907030c9f8 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 dbe6e8158d..5dae3f8ba9 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 35a5ede892..f49d387f8d 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 eec98f5b5a..ef8795e0c8 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 071563e748..d0548e0d66 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 cbd68a6929..e8eec74f57 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 852012e9a8..cf5f6f310f 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 a053d59f28..be9201ab06 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 45f0527d04..6bff8ba3cd 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 9b17fb7ddf..2aa94029fc 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 8211b5cb63..f2317464af 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 5f8a56defc..69552d4a9c 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 c5133e3f4d..4f2e9d1595 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 a597260cc7..c0eba8974e 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 59bb25868e..b9fdd156ed 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 434621feeb..2c3099a95b 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 fda6115e7e..61d91e8bc4 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 4c08573739..28d0802c6a 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 f6058d695d..bed57bb1db 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 897eaaf047..eec68bfd4d 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 e2cd88ed28..5e8efda062 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 38c5ab889c..f340eb819b 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 0d372da2de..6b3651733c 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 9f5102f776..3dcaacb2e8 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 3aa9f86baa..bce6a04003 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 c8f9bd471e..e9ebc8f02b 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 0f42f27db8..8fbd486144 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 c302f6ac22..9808cc86b8 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 73c55e6687..c06465a2fc 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 ff1dff5008..981f77294a 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 67458013c6..64a89c3980 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 1b36729b82..dabb24fc9b 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 aed0a9b356..32d5e38e00 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 230ac84ddf..edb5cf3ce4 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 ff870b72f4..05a773e94d 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 7f4cb79861..a0c179d964 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 f55ee1983a..b358a724cb 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 094b306385..5994fd902e 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 4b6b2421e3..a989f2ef7c 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 bcd4dd09a6..ab52f3b304 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 97f5afb005..6ab28f4328 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 2942562fbd..807ff22786 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 777644e2df..0bd8b13cd8 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 101547c6d3..6af34a21b4 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 db446f07e9..1d1247b10a 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 f2cd849e91..6481e29620 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 89d32881ab..7d08a0e702 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 b3159431ec..e4c656629b 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 f901559955..6ae819962c 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 b0692cbf36..0f83269b4b 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 ddd67a16e7..95826e7611 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 6f4ed03b7d..fd5dd0f545 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 42851dabc8..b6a8f53842 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 6c3873f36d..413ac49b29 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 f6eafc5ae4..fc512bc10b 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 2138146dd7..f3e00a1d00 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 5e78967b48..60379686df 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 6db17d8f18..fb1d1b19a2 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 9813576197..687547dc58 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 5198dfd760..f8d20ffeba 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 da8c67e6f9..ae374f29da 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 fdb483bf4e..37d15bb4fa 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 0a62206af8..ba1bad3a5f 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 d48f11b626..52c2fd0104 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 1285323cfd..c957d083e9 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 fdf516c6c2..cfdd8b6575 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 fdee5ab7ab..dd9aa2f02b 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 fbc351386a..734ee14a82 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 2ba0fea6f8..b7ae4ad943 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 b6b0c94cba..848fe52f63 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 86f5331f26..64fcf37368 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 6c8cee48df..eb4dbf3f60 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 e070da099f..6002386da9 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 8bdb9ef091..02cd9f6e38 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 4119805384..14951bb69d 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 c567f174ac..e4081286a6 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 36ea3e28a5..adebb46906 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 8e64fadde2..86bfdc9e25 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 a049861851..f526323be1 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 91f99d2acd..b9c512c2c7 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 35955ca29e..718319d4cc 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 574f121b31..4e86071501 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 6237757773..77a8be9cbf 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 592f9d06fd..97121ec637 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 86cc58c0ec..bd067e7a54 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 00599e9e7d..2e0892bc2a 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 e0fc10d0ee..2a9ec9349a 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 95bb08e798..acebfc5229 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 f36b1e9197..3e28ed0e24 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 5266e5cc80..055e2cb85c 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 c1e3cd3bdb..81a80fd753 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 05e585c9a3..7464b2a537 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 b9f47dbf7d..145b71f254 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 502cd25d58..18ce9f932f 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 f23c096f23..c77c38892a 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 ceebe7b252..8010f19389 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 af3f8ea6c2..3b7d5c135d 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 a0e26c4841..ca690e8ed9 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 0816d47395..750c64be62 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 12afb27937..4c8f5e0954 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 ecaebb67fb..e2dc45df48 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 1f1f3d9e98..3837df8a46 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 9130e69d5d..e36cecb173 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 0f2caee682..077acf860a 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 9d9071a4f9..341c3a23ec 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 8da002ac16..09b406d78a 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 3d28946888..112621ccdb 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 782167167c..a984f8c98e 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 14971bf775..9ec6ccadd1 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 0bec534200..8cf5a719db 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 91a850de16..1bd4a361e6 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 8597b94eab..03c4e6932f 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 c4b6c4b872..04ca2571dd 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 3966005977..09be9b4229 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 ff9e9d6101..f43902599e 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 9ac83f42a9..6793931595 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 5237506960..2d30acb1c5 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 e929f213a8..3087ed3cf1 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 eb80bb0632..4551949b91 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 c45647d741..99bf605abe 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 34a18f6335..6107381693 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 75ccb8b536..c8103a81f0 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 acef033687..ecc510d450 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 23434cff91..2e852e78df 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 1a906d0e01..d6a716a1ee 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 606b5e7a28..dbbb4e64a3 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 c5a0091ed2..34979c609a 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 e53e22d20b..283838c750 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 3544bc2f32..ff584fc95b 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 e76743dc03..9cd1ed21b9 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 bccb46b3ff..bbb86578fe 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 822e891022..fed18b1364 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 2bc03db43d..4dc1fdd0f9 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 0a4ae17db3..9637649dad 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 f566ac2dff..3292ddb72c 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 d55214a373..79274126b2 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 e3db7a3be3..e581df953f 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 6b4e97d60e..47d0c9cb83 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 569064633f..f030e64c15 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 7329b189f1..a5b7064a87 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 c66a6e7950..bd532d1bb6 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 0104342fa4..dfc8f3c16e 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 593b11afc4..d1357b46fe 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 219dd6254a..35d5b0bf2a 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 7eb4bf92d9..f02e915c59 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 ba19ac9487..3635a68012 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 adb52d6386..73855c9833 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 707ab0fcb5..c8649b0061 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 0796b5b764..00b15a7e25 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 e1b84fb835..c83a5469d0 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 10fc28ff5a..2acaa60f6e 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 258e0ca613..74a586bbc0 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 c8b4c62d96..11b6f2909a 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 6c433390b3..e7f6707a80 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 7d9027e2e1..02e393392e 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 2dfd6158cf..5aee1b4308 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 262df3a32c..d18aff5d9f 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 c07e031ff1..c3e1a1bb20 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 b273ef97b0..d0ecabab21 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 a868777969..2824e6ffdb 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 ff8cdb0cc8..e78dba3f95 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 c5c31e0c00..89a441d9c9 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 19890db864..9b5d62d9fc 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 844cdecf99..8dd82d91a3 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 50cff7a85a..e0d4fbd1f1 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 1292fc35b5..88de492f66 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 519ff461dd..80293f2202 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 5ea1ae6326..d0754a7372 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 3346f4eb04..b8374044a8 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 926dbd1f5c..e17505980a 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 2c494200e6..8219ee4f25 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 cb6e479e7b..f1e11c51f0 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 0ffd20f6c5..3a8fae78eb 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 e42f60061d..aa5c56f882 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 bf2da10b20..7bf51d3f37 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 67d76afd01..9f5d1239e8 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 826709a596..376ba2e096 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 1cf2f14659..1cc01c1247 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 cdb6eb94a0..1504391bd7 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 c8a0a6b1d1..37374394a0 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 d7fa858d40..4ce24c410d 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 dfca533bff..7ab402ce02 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 2047192b5b..53f76634f1 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 9a68d49663..e1081c7e3c 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 31cd3e6f86..42a799aa55 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 6260c0901e..668a6830fe 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 be3e79faa0..64d5979919 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 e788a35745..5c00676c0b 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 9c70d10309..b51480aae3 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 3b25657981..67799e2eea 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 c254087ec9..a11446a092 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 e835f2b4aa..5026134d20 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 254395350c..b1a18d468a 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 d1ea66c748..007381649c 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 cb7a8b2f14..bac1971519 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 48866f92c6..fac01f3512 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 1173aa9e39..c32653c108 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 b59e1672ea..c8d5052678 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 673b9345b6..ca51a60fa3 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 990851e3f2..7836344e86 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 843f87b4b1..2af30e5d34 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 671cee2907..a4bd842432 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 7f40175fe3..6b6c2ca801 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 f3737be676..01264f0e07 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 9563b6a581..897d8ad510 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 acc93a4f25..da6fe98e27 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 99d25bee2e..80baec3663 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 e405815f7c..d5abb11612 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 fd2119406b..3395790f16 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 6791e29139..c0445fda7a 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 d3f477f792..e4b1506ff9 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 f04371d52f..c5e4184e07 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 ea161b9e37..e2d4a5c73a 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 23d50dfc23..ed6cfd0f32 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 a43f58cbd8..6446de912d 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 dd214946ec..7581c97898 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 7d36543ab6..7098f5c2ac 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 c522bfd38a..ed7d135a6c 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 6466456e10..e690317c36 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 25a5e0d656..675310b67f 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 0d3f39e3ee..7cd3e31c81 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 0710b6acb0..032e828c4e 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 0f47f36285..f7d01ee504 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 01862e8281..31bf987d3f 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 244414adf0..8d3173e04e 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 7b767bdd60..353d14591b 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 a84c4d0a0a..659525a737 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 5344ba5c51..900b220954 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 4424fa23e5..a2b3ad473e 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 df8be782a3..dda6a6339e 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 594c124bcf..89718d4286 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 2d054b1c46..c31758defe 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 b10ad83d2d..d9e007ee80 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 511fe56c30..c37eb58982 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 f7be70cdd6..2e00a6891d 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 fa019447a5..42870b6b6b 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 70f7eeefed..3da76a284d 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 ab82f9532b..6e6e478390 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 1fcc1b13f7..699cce94b6 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 5b573e7250..76f1847e40 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 16fc4f7ddb..2f595b3fe9 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 e3bb913d35..db739ba85b 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 3137d0afdc..4207afcfd5 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 315a63e26c..90ba19ef1b 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 1e22f4b7da..c500418319 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 c8c6256427..df0d39e194 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 71106f1153..6f2e9ad664 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 9300ffc6d0..e1f8918944 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 7ecd830f54..c3384c2cdf 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 28360882ec..2f9854b8bd 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 6476759c26..d02d53a2b5 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 7e5ca80be6..ea0db57fa6 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 39bb66e5d3..b1f727195f 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 e1f44e0ec7..4b6e1d460e 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 7b152eddd6..f2ee0df7cb 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 121e631d1b..6a80746789 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 5c2df225b2..e93c3b7ffa 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 8329473e3a..0989dbd9cf 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 cbba1f4179..b17614bd44 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 ae682aa456..be96bd4e87 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 2ae9532843..c72977f949 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 741556483f..f068a11753 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 b4e85d7f7b..4fe357be5d 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 2825376268..65b6cd5bd9 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 6326f7139f..3c9fcdbb03 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 fb2e2e216d..63aea08ae3 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 b96cc4683b..6099530aff 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 0fd9436787..42ba932378 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 15d2e5c62b..caf73f807b 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 b9efc62b01..82619800af 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 03a2c47e09..0d56f719e5 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 c23bb2e315..cd5743bfab 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 53f052cae3..ea01bb0418 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 842844cd40..46b95ee9f3 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 a355eb4626..8bec3375cb 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 738b5839ff..3ffb8f09c4 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 d5b5d31943..fcf106f274 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 16a9086324..26dc584069 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 b5011acb94..31417d4213 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 811aca80f6..c20c81f020 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 370a880602..97e6dba77a 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 4b24b992c7..2ce5571dff 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 610914ea2a..d109fda842 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 bfe36ecf30..3cf3f78ade 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 bc6342b1da..3ac680bf45 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 d72ea3f5ed..ece71548a7 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 888a3128af..5a78c3b947 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 3c3cf8b34d..cef2cb328b 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 cd94e8a414..2f52ca8deb 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 df35efcde2..5ba2579182 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 d1dce1da9f..eb1334a82f 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 15469440b0..94e66d87b5 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 a6fc941993..7434e860ff 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 4b13012774..1d11dd2057 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 a4c8d129fd..c71b84999d 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 f67e5874d2..84a950d0e7 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 4ff03f1406..845e98b9e7 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 c414ac1915..17f8906dad 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 a653b79dac..4eb98e767d 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 da1bb9271a..5902b97e53 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 f518075695..2dcd4cbe2e 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 57dba764c2..6732d9a5a6 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 591ce747f9..5aafff4af4 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 ae02466077..c4809f80d0 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 7c48040ec5..3ffa357f7b 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 2d579363b8..cf859bcc04 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 881aea3363..2fe5f4dd9c 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 abe654c88b..37924fa622 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 0560ca6998..bd4527b0b3 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 1e3ca9bbcc..4f9b8f4464 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 9a08aea77a..d6dd4f2e1a 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 4c2e9855d9..c374a790f0 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 c54990d151..e9d8ec160b 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 e2853f2f35..25c1332c83 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 4d537e8966..0ed2400556 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 c87bca5396..4c0bc76f75 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 8cd3b5d553..2fc02c0b4f 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 c1476ad923..5aaf67f4bd 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 e9161ca752..82432cc9bb 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 04b5de8a9e..192792e641 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 a8ba2430a2..702d2308ac 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 466c0f853b..69b1b4b0fe 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 cdaa641ec8..7fc21aaa73 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 105b73d51d..5ffc2f6418 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 e45bdeb431..b6c3aeb897 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 6bcfdab8fc..e7dd0155da 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 f4b86ca751..1550437e42 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 05300a3ee5..ef9523a328 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 f9a6bb3549..c6bc4fc15b 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" 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 8c157d003c..e0b9fe3c69 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); } /** 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 e66a874087..d831487b16 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'); 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 0af933afef..f3c3eb4d0d 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); } } 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 72dee44e7c..9ce11274c8 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() { 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 f48dc53c56..0eae730d03 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); } } 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 9254365e3e..dfa29f329c 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 7097a376d6..af54f43915 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() { 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 78892a564c..802c8ea049 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 { /** 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 f40cd0d77f..304cb7239e 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)); } } } 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 fa8c25fc98..ef86013b3e 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)); 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 fc76836995..31f3f968d9 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(); } 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 af83a56ff1..1c7d1c8976 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) { 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 802c8ea049..4feb0520f1 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 aa98db856f..b057204ad3 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 8452949a72..2794a0a626 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() { 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 7725a6a5a0..1e3879a4e8 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': 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 1e3879a4e8..45b1a7a81f 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; } 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 0000000000..d55086196a --- /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 c7e51ccfa4..d15b712139 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'; 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 59f203993e..5d52db6a5a 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.'); } } } 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 4d6788f2bd..5e624bf30b 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; } } 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 5d52db6a5a..103909e2e2 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 { 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 5e624bf30b..515563b78e 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(); } - return $code; + if ( self::$backend==self::BACKEND_PDO and self::$PDO ) { + return self::$PDO->errorCode(); + } + + 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 ''; } /** 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 fc6fe0bba7..6f12f81f47 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 103909e2e2..c2e55eabf4 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); } 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 9c1604cfcd..bdeddfb84c 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 0903b9bd5c..d60fd82f91 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 4173212dfa..ec73ad5456 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 7dc6fbd0ad..9043c04e7b 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 1ed3f6ef47..0eba6862e6 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -230,12 +230,16 @@ endfor;?> -