From 0cd6473909e3db54cb69df4de96ef8409b41e515 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Mon, 9 Sep 2013 15:35:39 +0200 Subject: [PATCH 001/139] On an auth failure the uid and the IP address should be logged to the standard log file. This update works for a standard setup, when using a proxy for the server one can probably use the X-forwarded-for header instead of the remote address. --- lib/base.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/base.php b/lib/base.php index ea5adbadc9..052444271c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,6 +730,8 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::ERROR); } OC_Util::displayLoginPage(array_unique($error)); From 7810e27dad3c67f310657d1b19db71e0e4f94631 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Tue, 10 Sep 2013 11:07:26 +0200 Subject: [PATCH 002/139] Changed default behaviour to not log IP address in case of an auth failure. Can be configured in OC conf now. Log level changed to warning . --- lib/base.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index 052444271c..e8a4d3f87a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,8 +730,14 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; - OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], - OC_Log::ERROR); + if ( OC_Config::getValue('log_authfailip', '') ) { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::WARN); + } + else { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', + OC_Log::WARN); + } } OC_Util::displayLoginPage(array_unique($error)); From 0fb719dffe5c2240c97da6ecb37b4437b7ba0391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 16 Sep 2013 10:43:53 +0200 Subject: [PATCH 003/139] adding size() to the file cache --- lib/cache/file.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/cache/file.php b/lib/cache/file.php index 361138e473..eed2637c98 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -40,6 +40,24 @@ class OC_Cache_File{ return $result; } + /** + * Returns the size of the stored/cached data + * + * @param $key + * @return int + */ + public function size($key) { + $result = 0; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + if ($this->hasKey($key)) { + $storage = $this->getStorage(); + $result = $storage->filesize($key); + } + \OC_FileProxy::$enabled = $proxyStatus; + return $result; + } + public function set($key, $value, $ttl=0) { $storage = $this->getStorage(); $result = false; From 16ef5a8b357e623b1f1621c3e52957167e93e46b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 16 Sep 2013 10:47:29 +0200 Subject: [PATCH 004/139] returning the number of stored bytes in store() and adding cleanup() method --- lib/filechunking.php | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/lib/filechunking.php b/lib/filechunking.php index e6d69273a4..c0e3acbf1a 100644 --- a/lib/filechunking.php +++ b/lib/filechunking.php @@ -34,10 +34,19 @@ class OC_FileChunking { return $this->cache; } + /** + * Stores the given $data under the given $key - the number of stored bytes is returned + * + * @param $index + * @param $data + * @return int + */ public function store($index, $data) { $cache = $this->getCache(); $name = $this->getPrefix().$index; $cache->set($name, $data); + + return $cache->size($name); } public function isComplete() { @@ -58,12 +67,24 @@ class OC_FileChunking { $count = 0; for($i=0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); - $cache->remove($prefix.$i); $count += fwrite($f, $chunk); } + + $this->cleanup(); return $count; } + /** + * Removes all chunks which belong to this transmission + */ + public function cleanup() { + $cache = $this->getCache(); + $prefix = $this->getPrefix(); + for($i=0; $i < $this->info['chunkcount']; $i++) { + $cache->remove($prefix.$i); + } + } + public function signature_split($orgfile, $input) { $info = unpack('n', fread($input, 2)); $blocksize = $info[1]; From 39599019e5c3e47c5d03a1b63b438cacdab5b37e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 16 Sep 2013 10:48:21 +0200 Subject: [PATCH 005/139] adding detection of aborted uploads --- lib/connector/sabre/directory.php | 99 ++++++++++++++++++------------- 1 file changed, 58 insertions(+), 41 deletions(-) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 3181a4b310..8a092c2455 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -55,53 +55,40 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } if (isset($_SERVER['HTTP_OC_CHUNKED'])) { - $info = OC_FileChunking::decodeName($name); - if (empty($info)) { - throw new Sabre_DAV_Exception_NotImplemented(); - } - $chunk_handler = new OC_FileChunking($info); - $chunk_handler->store($info['index'], $data); - if ($chunk_handler->isComplete()) { - $newPath = $this->path . '/' . $info['name']; - $chunk_handler->file_assemble($newPath); - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); - } - } else { - $newPath = $this->path . '/' . $name; + return $this->createFileChunked($name, $data); + } + $newPath = $this->path . '/' . $name; - // mark file as partial while uploading (ignored by the scanner) - $partpath = $newPath . '.part'; + // mark file as partial while uploading (ignored by the scanner) + $partpath = $newPath . '.part'; - \OC\Files\Filesystem::file_put_contents($partpath, $data); + \OC\Files\Filesystem::file_put_contents($partpath, $data); - //detect aborted upload - 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); - } + //detect aborted upload + 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); } } - - // rename to correct path - \OC\Files\Filesystem::rename($partpath, $newPath); - - // allow sync clients to send the mtime along in a header - $mtime = OC_Request::hasModificationTime(); - if ($mtime !== false) { - if(\OC\Files\Filesystem::touch($newPath, $mtime)) { - header('X-OC-MTime: accepted'); - } - } - - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); } - return null; + // rename to correct path + \OC\Files\Filesystem::rename($partpath, $newPath); + + // allow sync clients to send the mtime along in a header + $mtime = OC_Request::hasModificationTime(); + if ($mtime !== false) { + if(\OC\Files\Filesystem::touch($newPath, $mtime)) { + header('X-OC-MTime: accepted'); + } + } + + return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); } /** @@ -250,7 +237,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * If the array is empty, all properties should be returned * * @param array $properties - * @return void + * @return array */ public function getProperties($properties) { $props = parent::getProperties($properties); @@ -260,4 +247,34 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } return $props; } + + private function createFileChunked($name, $data) + { + $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } + $chunk_handler = new OC_FileChunking($info); + $bytesWritten = $chunk_handler->store($info['index'], $data); + + //detect aborted upload + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset($_SERVER['CONTENT_LENGTH'])) { + $expected = $_SERVER['CONTENT_LENGTH']; + if ($bytesWritten != $expected) { + $chunk_handler->cleanup(); + throw new Sabre_DAV_Exception_BadRequest( + 'expected filesize ' . $expected . ' got ' . $bytesWritten); + } + } + } + + if ($chunk_handler->isComplete()) { + $newPath = $this->path . '/' . $info['name']; + $chunk_handler->file_assemble($newPath); + return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); + } + + return null; + } } From 8603f956ab5982251de51ea403ee93c840a987ac Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 1 Oct 2013 19:01:52 +0200 Subject: [PATCH 006/139] Get urlParams registered before Request is instantiated --- lib/private/appframework/app.php | 5 +---- .../dependencyinjection/dicontainer.php | 4 +++- .../security/securitymiddleware.php | 4 ++-- lib/public/appframework/app.php | 20 ++++++++++--------- tests/lib/appframework/AppTest.php | 5 +++-- .../security/SecurityMiddlewareTest.php | 8 +++++++- 6 files changed, 27 insertions(+), 19 deletions(-) diff --git a/lib/private/appframework/app.php b/lib/private/appframework/app.php index 7ff55bb809..6d3effbf1f 100644 --- a/lib/private/appframework/app.php +++ b/lib/private/appframework/app.php @@ -42,12 +42,9 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes * @param DIContainer $container an instance of a pimple container. */ - public static function main($controllerName, $methodName, array $urlParams, - IAppContainer $container) { - $container['urlParams'] = $urlParams; + public static function main($controllerName, $methodName, IAppContainer $container) { $controller = $container[$controllerName]; // initialize the dispatcher and run all the middleware before the controller diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 3755d45fa0..b06010014f 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -49,9 +49,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ * Put your class dependencies in here * @param string $appName the name of the app */ - public function __construct($appName){ + public function __construct($appName, $urlParams = array()){ $this['AppName'] = $appName; + $this['urlParams'] = $urlParams; $this->registerParameter('ServerContainer', \OC::$server); @@ -66,6 +67,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ /** @var $c SimpleContainer */ /** @var $server IServerContainer */ $server = $c->query('ServerContainer'); + $server->registerParameter('urlParams', $c['urlParams']); return $server->getRequest(); }); diff --git a/lib/private/appframework/middleware/security/securitymiddleware.php b/lib/private/appframework/middleware/security/securitymiddleware.php index 4f1447e1af..b65e3510ea 100644 --- a/lib/private/appframework/middleware/security/securitymiddleware.php +++ b/lib/private/appframework/middleware/security/securitymiddleware.php @@ -74,12 +74,12 @@ class SecurityMiddleware extends Middleware { // this will set the current navigation entry of the app, use this only // for normal HTML requests and not for AJAX requests - $this->api->activateNavigationEntry(); + //$this->api->activateNavigationEntry(); // security checks $isPublicPage = $annotationReader->hasAnnotation('PublicPage'); if(!$isPublicPage) { - if(!$this->api->isLoggedIn()) { + if(!\OC_User::isLoggedIn()) { throw new SecurityException('Current user is not logged in', Http::STATUS_UNAUTHORIZED); } diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index d97c5c8184..6ac48bf102 100644 --- a/lib/public/appframework/app.php +++ b/lib/public/appframework/app.php @@ -31,8 +31,11 @@ namespace OCP\AppFramework; * to be registered using IContainer::registerService */ class App { - public function __construct($appName) { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName); + /** + * @param array $urlParams an array with variables extracted from the routes + */ + public function __construct($appName, $urlParams = array()) { + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName, $urlParams); } private $container; @@ -50,8 +53,8 @@ class App { * Example code in routes.php of the task app: * $this->create('tasks_index', '/')->get()->action( * function($params){ - * $app = new TaskApp(); - * $app->dispatch('PageController', 'index', $params); + * $app = new TaskApp($params); + * $app->dispatch('PageController', 'index'); * } * ); * @@ -59,8 +62,8 @@ class App { * Example for for TaskApp implementation: * class TaskApp extends \OCP\AppFramework\App { * - * public function __construct(){ - * parent::__construct('tasks'); + * public function __construct($params){ + * parent::__construct('tasks', $params); * * $this->getContainer()->registerService('PageController', function(IAppContainer $c){ * $a = $c->query('API'); @@ -73,9 +76,8 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes */ - public function dispatch($controllerName, $methodName, array $urlParams) { - \OC\AppFramework\App::main($controllerName, $methodName, $urlParams, $this->container); + public function dispatch($controllerName, $methodName) { + \OC\AppFramework\App::main($controllerName, $methodName, $this->container); } } diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php index 80abaefc43..4d68f728de 100644 --- a/tests/lib/appframework/AppTest.php +++ b/tests/lib/appframework/AppTest.php @@ -38,7 +38,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { private $controllerMethod; protected function setUp() { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test'); + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test', array()); $this->controller = $this->getMockBuilder( 'OC\AppFramework\Controller\Controller') ->disableOriginalConstructor() @@ -56,6 +56,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->container[$this->controllerName] = $this->controller; $this->container['Dispatcher'] = $this->dispatcher; + $this->container['urlParams'] = array(); } @@ -69,7 +70,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->expectOutputString(''); - App::main($this->controllerName, $this->controllerMethod, array(), + App::main($this->controllerName, $this->controllerMethod, $this->container); } diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 3ed44282a7..d3f8e20b6b 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -80,7 +80,8 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testSetNavigationEntry(){ - $this->checkNavEntry('testSetNavigationEntry', true); + $this->markTestSkipped("Setting navigation in security check has been disabled"); + //$this->checkNavEntry('testSetNavigationEntry', true); } @@ -120,6 +121,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testAjaxNotAdminCheck() { + $this->markTestSkipped("Logged in state currently not available in API"); $this->ajaxExceptionStatus( 'testAjaxNotAdminCheck', 'isAdminUser', @@ -234,6 +236,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testLoggedInCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testLoggedInCheck', 'isLoggedIn'); } @@ -243,6 +246,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testFailLoggedInCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailLoggedInCheck', 'isLoggedIn', true); } @@ -251,6 +255,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testIsAdminCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testIsAdminCheck', 'isAdminUser'); } @@ -259,6 +264,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testFailIsAdminCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailIsAdminCheck', 'isAdminUser', true); } From ea6115bfaa6f8598da727dfacbcf093578149d9d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:18:03 +0200 Subject: [PATCH 007/139] fix smb streamwrapper on non existing files --- apps/files_external/3rdparty/smb4php/smb.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index e7d1dfa09f..aec181a350 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -181,6 +181,8 @@ class smb { return false; }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_PATH_NOT_FOUND'){ return false; + }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_NAME_NOT_FOUND'){ + return false; }elseif(substr($regs[0],0,29)=='NT_STATUS_FILE_IS_A_DIRECTORY'){ return false; } @@ -430,7 +432,10 @@ class smb_stream_wrapper extends smb { case 'rb': case 'a': case 'a+': $this->tmpfile = tempnam('/tmp', 'smb.down.'); - smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + $result = smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + if($result === false){ + return $result; + } break; case 'w': case 'w+': From ea566868a8c0ce7da49fceb29a9d22b46034d642 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:29:33 +0200 Subject: [PATCH 008/139] return the correct result when doing an smb rename --- apps/files_external/3rdparty/smb4php/smb.php | 3 ++- apps/files_external/tests/smb.php | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index aec181a350..e91b0a5958 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -307,7 +307,8 @@ class smb { trigger_error('rename(): error in URL', E_USER_ERROR); } smb::clearstatcache ($url_from); - return smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + $result = smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + return $result !== false; } function mkdir ($url, $mode, $options) { diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index ca2a93c894..86dbd3ab88 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -15,7 +15,7 @@ class SMB extends Storage { public function setUp() { $id = uniqid(); $this->config = include('files_external/tests/config.php'); - if ( ! is_array($this->config) or ! isset($this->config['smb']) or ! $this->config['smb']['run']) { + if (!is_array($this->config) or !isset($this->config['smb']) or !$this->config['smb']['run']) { $this->markTestSkipped('Samba backend not configured'); } $this->config['smb']['root'] .= $id; //make sure we have an new empty folder to work in @@ -28,4 +28,10 @@ class SMB extends Storage { \OCP\Files::rmdirr($this->instance->constructUrl('')); } } + + public function testRenameWithSpaces() { + $this->instance->mkdir('with spaces'); + $result = $this->instance->rename('with spaces', 'foo bar'); + $this->assertTrue($result); + } } From 29deef38b27f2b33eec8925cab7f6f323a35ea96 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:31:22 +0200 Subject: [PATCH 009/139] fix using touch to create a file for smb --- apps/files_external/lib/streamwrapper.php | 26 +++++++++++++---------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index beb4ec5605..a110c00652 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -abstract class StreamWrapper extends Common{ +abstract class StreamWrapper extends Common { abstract public function constructUrl($path); public function mkdir($path) { @@ -16,7 +16,7 @@ abstract class StreamWrapper extends Common{ } public function rmdir($path) { - if($this->file_exists($path)) { + if ($this->file_exists($path)) { $success = rmdir($this->constructUrl($path)); clearstatcache(); return $success; @@ -34,11 +34,11 @@ abstract class StreamWrapper extends Common{ } public function isReadable($path) { - return true;//not properly supported + return true; //not properly supported } public function isUpdatable($path) { - return true;//not properly supported + return true; //not properly supported } public function file_exists($path) { @@ -55,15 +55,19 @@ abstract class StreamWrapper extends Common{ return fopen($this->constructUrl($path), $mode); } - public function touch($path, $mtime=null) { - if(is_null($mtime)) { - $fh = $this->fopen($path, 'a'); - fwrite($fh, ''); - fclose($fh); + public function touch($path, $mtime = null) { + if ($this->file_exists($path)) { + if (is_null($mtime)) { + $fh = $this->fopen($path, 'a'); + fwrite($fh, ''); + fclose($fh); - return true; + return true; + } else { + return false; //not supported + } } else { - return false;//not supported + $this->file_put_contents($path, ''); } } From de43515cfad858224393f5cc5bfb35c07a1820b0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:33:58 +0200 Subject: [PATCH 010/139] fix recursive delete for smb --- apps/files_external/lib/streamwrapper.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index a110c00652..4a63dfb6e0 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -17,6 +17,14 @@ abstract class StreamWrapper extends Common { public function rmdir($path) { if ($this->file_exists($path)) { + $dh = $this->opendir($path); + while (($file = readdir($dh)) !== false) { + if ($this->is_dir($path . '/' . $file)) { + $this->rmdir($path . '/' . $file); + } else { + $this->unlink($path . '/' . $file); + } + } $success = rmdir($this->constructUrl($path)); clearstatcache(); return $success; From 51c34777c4accae634b7877fac970fd2a2e2550c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 2 Oct 2013 22:28:19 +0200 Subject: [PATCH 011/139] extend test case --- apps/files_external/tests/smb.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index 86dbd3ab88..0291f293fa 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -33,5 +33,6 @@ class SMB extends Storage { $this->instance->mkdir('with spaces'); $result = $this->instance->rename('with spaces', 'foo bar'); $this->assertTrue($result); + $this->assertTrue($this->instance->is_dir('foo bar')); } } From 0c837cefb68102dc7548d62fb78ab36ef8be9a29 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 13 Sep 2013 19:01:40 +0200 Subject: [PATCH 012/139] LDAP: allow different UUID attributes for groups and users --- apps/user_ldap/appinfo/update.php | 101 ++++---------------------- apps/user_ldap/appinfo/version | 2 +- apps/user_ldap/lib/access.php | 70 +++++++++++------- apps/user_ldap/lib/connection.php | 69 ++++++++++++------ apps/user_ldap/settings.php | 12 --- apps/user_ldap/templates/settings.php | 3 +- 6 files changed, 106 insertions(+), 151 deletions(-) diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php index 179451dad6..41770cf97b 100644 --- a/apps/user_ldap/appinfo/update.php +++ b/apps/user_ldap/appinfo/update.php @@ -1,20 +1,5 @@ setConnector($connector); -$groupBE = new \OCA\user_ldap\GROUP_LDAP(); -$groupBE->setConnector($connector); - -foreach($objects as $object) { - $fetchDNSql = ' - SELECT `ldap_dn`, `owncloud_name`, `directory_uuid` - FROM `*PREFIX*ldap_'.$object.'_mapping`'; - $updateSql = ' - UPDATE `*PREFIX*ldap_'.$object.'_mapping` - SET `ldap_DN` = ?, `directory_uuid` = ? - WHERE `ldap_dn` = ?'; - - $query = OCP\DB::prepare($fetchDNSql); - $res = $query->execute(); - $DNs = $res->fetchAll(); - $updateQuery = OCP\DB::prepare($updateSql); - foreach($DNs as $dn) { - $newDN = escapeDN(mb_strtolower($dn['ldap_dn'], 'UTF-8')); - if(!empty($dn['directory_uuid'])) { - $uuid = $dn['directory_uuid']; - } elseif($object === 'user') { - $uuid = $userBE->getUUID($newDN); - //fix home folder to avoid new ones depending on the configuration - $userBE->getHome($dn['owncloud_name']); - } else { - $uuid = $groupBE->getUUID($newDN); - } - try { - $updateQuery->execute(array($newDN, $uuid, $dn['ldap_dn'])); - } catch(Exception $e) { - \OCP\Util::writeLog('user_ldap', - 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ', - \OCP\Util::WARN); - } - - } + $value = \OCP\Config::getAppValue('user_ldap', + $config.'ldap_expert_uuid_attr', 'auto'); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_user_attr', $value); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_group_attr', $value); } - -function escapeDN($dn) { - $aDN = ldap_explode_dn($dn, false); - unset($aDN['count']); - foreach($aDN as $key => $part) { - $value = substr($part, strpos($part, '=')+1); - $escapedValue = strtr($value, Array(','=>'\2c', '='=>'\3d', '+'=>'\2b', - '<'=>'\3c', '>'=>'\3e', ';'=>'\3b', '\\'=>'\5c', - '"'=>'\22', '#'=>'\23')); - $part = str_replace($part, $value, $escapedValue); - } - $dn = implode(',', $aDN); - - return $dn; -} - - -// SUPPORTED UPGRADE FROM Version 0.3 (ownCloud 4.5) to 0.4 (ownCloud 5) - -if(!isset($connector)) { - $connector = new \OCA\user_ldap\lib\Connection(); -} -//it is required, that connections do have ldap_configuration_active setting stored in the database -$connector->getConfiguration(); -$connector->saveConfiguration(); - -// we don't save it anymore, was a well-meant bad idea. Clean up database. -$query = OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `appid` = ? AND `configkey` = ?'); -$query->execute(array('user_ldap' , 'homedir')); diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version index 60a2d3e96c..44bb5d1f74 100644 --- a/apps/user_ldap/appinfo/version +++ b/apps/user_ldap/appinfo/version @@ -1 +1 @@ -0.4.0 \ No newline at end of file +0.4.1 \ No newline at end of file diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index fdf9c24612..f75a78bcb0 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -288,7 +288,7 @@ class Access extends LDAPUtility { } //second try: get the UUID and check if it is known. Then, update the DN and return the name. - $uuid = $this->getUUID($dn); + $uuid = $this->getUUID($dn, $isUser); if($uuid) { $query = \OCP\DB::prepare(' SELECT `owncloud_name` @@ -580,7 +580,9 @@ class Access extends LDAPUtility { '); //feed the DB - $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); + $insRows = $insert->execute(array($dn, $ocname, + $this->getUUID($dn, $isUser), $dn, + $ocname)); if(\OCP\DB::isError($insRows)) { return false; @@ -905,55 +907,67 @@ class Access extends LDAPUtility { * @param $force the detection should be run, even if it is not set to auto * @returns true on success, false otherwise */ - private function detectUuidAttribute($dn, $force = false) { - if(($this->connection->ldapUuidAttribute !== 'auto') && !$force) { + private function detectUuidAttribute($dn, $isUser = true, $force = false) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + if(($this->connection->$uuidAttr !== 'auto') && !$force) { return true; } - $fixedAttribute = $this->connection->ldapExpertUUIDAttr; - if(!empty($fixedAttribute)) { - $this->connection->ldapUuidAttribute = $fixedAttribute; + if(!empty($uuidOverride) && !$force) { + $this->connection->$uuidAttr = $uuidOverride; return true; } - //for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID + //for now, supported attributes are entryUUID, nsuniqueid, objectGUID $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid'); foreach($testAttributes as $attribute) { - \OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $value = $this->readAttribute($dn, $attribute); if(is_array($value) && isset($value[0]) && !empty($value[0])) { - \OCP\Util::writeLog('user_ldap', 'Setting '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $this->connection->ldapUuidAttribute = $attribute; + \OCP\Util::writeLog('user_ldap', + 'Setting '.$attribute.' as '.$uuidAttr, + \OCP\Util::DEBUG); + $this->connection->$uuidAttr = $attribute; return true; } - \OCP\Util::writeLog('user_ldap', - 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value, true), - \OCP\Util::DEBUG); } + \OCP\Util::writeLog('user_ldap', + 'Could not autodetect the UUID attribute', + \OCP\Util::ERROR); return false; } - public function getUUID($dn) { - if($this->detectUuidAttribute($dn)) { - \OCP\Util::writeLog('user_ldap', - 'UUID Checking \ UUID for '.$dn.' using '. $this->connection->ldapUuidAttribute, - \OCP\Util::DEBUG); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); - if(!is_array($uuid) && $this->connection->ldapOverrideUuidAttribute) { - $this->detectUuidAttribute($dn, true); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); + public function getUUID($dn, $isUser = true) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + $uuid = false; + if($this->detectUuidAttribute($dn, $isUser)) { + $uuid = $this->readAttribute($dn, $this->connection->$uuidAttr); + if( !is_array($uuid) + && !empty($uuidOverride) + && $this->detectUuidAttribute($dn, $isUser, true)) { + $uuid = $this->readAttribute($dn, + $this->connection->$uuidAttr); } if(is_array($uuid) && isset($uuid[0]) && !empty($uuid[0])) { $uuid = $uuid[0]; - } else { - $uuid = false; } - } else { - $uuid = false; } + return $uuid; } diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index a53022c27b..93efdb4c9c 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -60,7 +60,8 @@ class Connection extends LDAPUtility { 'ldapQuotaDefault' => null, 'ldapEmailAttribute' => null, 'ldapCacheTTL' => null, - 'ldapUuidAttribute' => 'auto', + 'ldapUuidUserAttribute' => 'auto', + 'ldapUuidGroupAttribute' => 'auto', 'ldapOverrideUuidAttribute' => null, 'ldapOverrideMainServer' => false, 'ldapConfigurationActive' => false, @@ -69,7 +70,8 @@ class Connection extends LDAPUtility { 'homeFolderNamingRule' => null, 'hasPagedResultSupport' => false, 'ldapExpertUsernameAttr' => null, - 'ldapExpertUUIDAttr' => null, + 'ldapExpertUUIDUserAttr' => null, + 'ldapExpertUUIDGroupAttr' => null, ); /** @@ -120,11 +122,11 @@ class Connection extends LDAPUtility { public function __set($name, $value) { $changed = false; //only few options are writable - if($name === 'ldapUuidAttribute') { - \OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG); + if($name === 'ldapUuidUserAttribute' || $name === 'ldapUuidGroupAttribute') { + \OCP\Util::writeLog('user_ldap', 'Set config '.$name.' to '.$value, \OCP\Util::DEBUG); $this->config[$name] = $value; if(!empty($this->configID)) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', $value); + \OCP\Config::setAppValue($this->configID, $this->configPrefix.$name, $value); } $changed = true; } @@ -285,8 +287,10 @@ class Connection extends LDAPUtility { $this->config['ldapIgnoreNamingRules'] = \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false); $this->config['ldapCacheTTL'] = $this->$v('ldap_cache_ttl'); - $this->config['ldapUuidAttribute'] - = $this->$v('ldap_uuid_attribute'); + $this->config['ldapUuidUserAttribute'] + = $this->$v('ldap_uuid_user_attribute'); + $this->config['ldapUuidGroupAttribute'] + = $this->$v('ldap_uuid_group_attribute'); $this->config['ldapOverrideUuidAttribute'] = $this->$v('ldap_override_uuid_attribute'); $this->config['homeFolderNamingRule'] @@ -299,8 +303,10 @@ class Connection extends LDAPUtility { = preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_group_search')); $this->config['ldapExpertUsernameAttr'] = $this->$v('ldap_expert_username_attr'); - $this->config['ldapExpertUUIDAttr'] - = $this->$v('ldap_expert_uuid_attr'); + $this->config['ldapExpertUUIDUserAttr'] + = $this->$v('ldap_expert_uuid_user_attr'); + $this->config['ldapExpertUUIDGroupAttr'] + = $this->$v('ldap_expert_uuid_group_attr'); $this->configured = $this->validateConfiguration(); } @@ -339,7 +345,8 @@ class Connection extends LDAPUtility { 'ldap_attributes_for_user_search' => 'ldapAttributesForUserSearch', 'ldap_attributes_for_group_search' => 'ldapAttributesForGroupSearch', 'ldap_expert_username_attr' => 'ldapExpertUsernameAttr', - 'ldap_expert_uuid_attr' => 'ldapExpertUUIDAttr', + 'ldap_expert_uuid_user_attr' => 'ldapExpertUUIDUserAttr', + 'ldap_expert_uuid_group_attr' => 'ldapExpertUUIDGroupAttr', ); return $array; } @@ -413,7 +420,8 @@ class Connection extends LDAPUtility { break; case 'ldapIgnoreNamingRules': case 'ldapOverrideUuidAttribute': - case 'ldapUuidAttribute': + case 'ldapUuidUserAttribute': + case 'ldapUuidGroupAttribute': case 'hasPagedResultSupport': continue 2; } @@ -476,13 +484,23 @@ class Connection extends LDAPUtility { } $uuidAttributes = array( 'auto', 'entryuuid', 'nsuniqueid', 'objectguid', 'guid'); - if(!in_array($this->config['ldapUuidAttribute'], $uuidAttributes) - && (!is_null($this->configID))) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', 'auto'); - \OCP\Util::writeLog('user_ldap', - 'Illegal value for the UUID Attribute, reset to autodetect.', - \OCP\Util::INFO); + $uuidSettings = array( + 'ldapUuidUserAttribute' => 'ldapExpertUUIDUserAttr', + 'ldapUuidGroupAttribute' => 'ldapExpertUUIDGroupAttr'); + $cta = array_flip($this->getConfigTranslationArray()); + foreach($uuidSettings as $defaultKey => $overrideKey) { + if( !in_array($this->config[$defaultKey], $uuidAttributes) + && is_null($this->config[$overrideKey]) + && !is_null($this->configID)) { + \OCP\Config::setAppValue($this->configID, + $this->configPrefix.$cta[$defaultKey], + 'auto'); + \OCP\Util::writeLog('user_ldap', + 'Illegal value for'.$defaultKey.', reset to autodetect.', + \OCP\Util::DEBUG); + } } + if(empty($this->config['ldapBackupPort'])) { //force default $this->config['ldapBackupPort'] = $this->config['ldapPort']; @@ -502,8 +520,6 @@ class Connection extends LDAPUtility { \OCP\Util::INFO); } - - //second step: critical checks. If left empty or filled wrong, set as unconfigured and give a warning. $configurationOK = true; if(empty($this->config['ldapHost'])) { @@ -552,8 +568,11 @@ class Connection extends LDAPUtility { $configurationOK = false; } - if(!empty($this->config['ldapExpertUUIDAttr'])) { - $this->config['ldapUuidAttribute'] = $this->config['ldapExpertUUIDAttr']; + if(!empty($this->config['ldapExpertUUIDUserAttr'])) { + $this->config['ldapUuidUserAttribute'] = $this->config['ldapExpertUUIDUserAttr']; + } + if(!empty($this->config['ldapExpertUUIDGroupAttr'])) { + $this->config['ldapUuidGroupAttribute'] = $this->config['ldapExpertUUIDGroupAttr']; } return $configurationOK; @@ -587,15 +606,17 @@ class Connection extends LDAPUtility { 'ldap_email_attr' => '', 'ldap_group_member_assoc_attribute' => 'uniqueMember', 'ldap_cache_ttl' => 600, - 'ldap_uuid_attribute' => 'auto', + 'ldap_uuid_user_attribute' => 'auto', + 'ldap_uuid_group_attribute' => 'auto', 'ldap_override_uuid_attribute' => 0, 'home_folder_naming_rule' => '', 'ldap_turn_off_cert_check' => 0, 'ldap_configuration_active' => 1, 'ldap_attributes_for_user_search' => '', 'ldap_attributes_for_group_search' => '', - 'ldap_expert_username_attr' => '', - 'ldap_expert_uuid_attr' => '', + 'ldap_expert_username_attr' => '', + 'ldap_expert_uuid_user_attr' => '', + 'ldap_expert_uuid_group_attr' => '', ); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index b7070f2318..f20bc19118 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -25,18 +25,6 @@ OC_Util::checkAdminUser(); -$params = array('ldap_host', 'ldap_port', 'ldap_backup_host', - 'ldap_backup_port', 'ldap_override_main_server', 'ldap_dn', - 'ldap_agent_password', 'ldap_base', 'ldap_base_users', - 'ldap_base_groups', 'ldap_userlist_filter', - 'ldap_login_filter', 'ldap_group_filter', 'ldap_display_name', - 'ldap_group_display_name', 'ldap_tls', - 'ldap_turn_off_cert_check', 'ldap_nocase', 'ldap_quota_def', - 'ldap_quota_attr', 'ldap_email_attr', - 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl', - 'home_folder_naming_rule' - ); - OCP\Util::addscript('user_ldap', 'settings'); OCP\Util::addstyle('user_ldap', 'settings'); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index e214d57fb1..319dc38a62 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -100,7 +100,8 @@

t('Override UUID detection'));?>

t('By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?>

-

+

+

t('Username-LDAP User Mapping'));?>

t('Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.'));?>


From 12bb1970280914309ffca8ca796fcac80663c4cf Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 4 Oct 2013 17:21:52 +0200 Subject: [PATCH 013/139] JS version of the OCP\ITags interface --- core/css/jquery.ocdialog.css | 1 + core/css/styles.css | 24 ++- core/js/tags.js | 353 +++++++++++++++++++++++++++++++++++ core/routes.php | 50 +++-- core/tags/controller.php | 114 +++++++++++ core/templates/tags.html | 14 ++ 6 files changed, 534 insertions(+), 22 deletions(-) create mode 100644 core/js/tags.js create mode 100644 core/tags/controller.php create mode 100644 core/templates/tags.html diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index aa72eaf847..236968e324 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -29,6 +29,7 @@ bottom: 0; display: block; margin-top: 10px; + width: 100%; } .oc-dialog-close { diff --git a/core/css/styles.css b/core/css/styles.css index 06b61f0fa6..b0b247de9b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -726,15 +726,21 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} height: 16px; } - -/* ---- CATEGORIES ---- */ -#categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } -#categoryform .bottombuttons { position:absolute; bottom:10px;} -#categoryform .bottombuttons * { float:left;} -/*#categorylist { border:1px solid #ddd;}*/ -#categorylist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } -#categorylist li:hover, #categorylist li:active { background:#eee; } -#category_addinput { width:10em; } +/* ---- TAGS ---- */ +#tagsdialog .content { + width: 100%; height: 280px; +} +#tagsdialog .scrollarea { + overflow:auto; border:1px solid #ddd; + width: 100%; height: 240px; +} +#tagsdialog .bottombuttons { + width: 100%; height: 30px; +} +#tagsdialog .bottombuttons * { float:left;} +#tagsdialog .taglist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } +#tagsdialog .taglist li:hover, #tagsdialog .taglist li:active { background:#eee; } +#tagsdialog .addinput { width: 90%; clear: both; } /* ---- APP SETTINGS ---- */ .popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:100; } diff --git a/core/js/tags.js b/core/js/tags.js new file mode 100644 index 0000000000..a4c42905ee --- /dev/null +++ b/core/js/tags.js @@ -0,0 +1,353 @@ +OC.Tags= { + edit:function(type, cb) { + if(!type && !this.type) { + throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; + } + type = type ? type : this.type; + var self = this; + $.when(this._getTemplate()).then(function($tmpl) { + if(self.$dialog) { + self.$dialog.ocdialog('close'); + } + self.$dialog = $tmpl.octemplate({ + addText: t('core', 'Enter new') + }); + $('body').append(self.$dialog); + + self.$dialog.ready(function() { + self.$taglist = self.$dialog.find('.taglist'); + self.$taginput = self.$dialog.find('.addinput'); + self.$taglist.on('change', 'input:checkbox', function(event) { + self._handleChanges(self.$taglist, self.$taginput); + }); + self.$taginput.on('input', function(event) { + self._handleChanges(self.$taglist, self.$taginput); + }); + self.deleteButton = { + text: t('core', 'Delete'), + click: function() {self._deleteTags(self, type, self._selectedIds())}, + }; + self.addButton = { + text: t('core', 'Add'), + click: function() {self._addTag(self, type, self.$taginput.val())}, + }; + + self._fillTagList(type, self.$taglist); + }); + + self.$dialog.ocdialog({ + title: t('core', 'Edit tags'), + closeOnEscape: true, + width: 250, + height: 'auto', + modal: true, + //buttons: buttonlist, + close: function(event, ui) { + try { + $(this).ocdialog('destroy').remove(); + } catch(e) {console.warn(e);} + self.$dialog = null; + } + }); + }) + .fail(function(status, error) { + // If the method is called while navigating away + // from the page, it is probably not needed ;) + if(status !== 0) { + alert(t('core', 'Error loading dialog template: {error}', {error: error})); + } + }); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of ids + */ + getIdsForTag:function(type, tag) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_ids_for_tag', {type: type}); + $.getJSON(url, {tag: tag}, function(response) { + if(response.status === 'success') { + defer.resolve(response.ids); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of ids + */ + getFavorites:function(type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_favorites', {type: type}); + $.getJSON(url, function(response) { + if(response.status === 'success') { + defer.resolve(response.ids); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of id/name objects + */ + getTags:function(type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_tags', {type: type}); + $.getJSON(url, function(response) { + if(response.status === 'success') { + defer.resolve(response.tags); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + tagAs:function(id, tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_tag', {type: type, id: id}); + $.post(url, {tag: tag}, function(response) { + if(response.result === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + unTag:function(id, tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_untag', {type: type, id: id}); + $.post(url, {tag: tag}, function(response) { + if(response.result === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + addToFavorites:function(id, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_favorite', {type: type, id: id}); + $.post(url, function(response) { + if(response.result === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + removeFromFavorites:function(id, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_unfavorite', {type: type, id: id}); + $.post(url, function(response) { + if(response.result === 'success') { + defer.resolve(); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param string tag + * @param string type + * @return jQuery.Promise which resolves with an object with the name and the new id + */ + addTag:function(tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_add', {type: type}); + $.post(url,{tag:tag}, function(response) { + if(typeof cb == 'function') { + cb(response); + } + if(response.status === 'success') { + defer.resolve({id:response.id, name: tag}); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param array tags + * @param string type + * @return jQuery.Promise + */ + deleteTags:function(tags, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_delete', {type: type}); + if(!tags || !tags.length) { + throw new Error(t('core', 'No tags selected for deletion.')); + } + var self = this; + $.post(url, {tags:tags}, function(response) { + if(response.status === 'success') { + defer.resolve(response.tags); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + _update:function(tags, type) { + if(!this.$dialog) { + return; + } + var $taglist = this.$dialog.find('.taglist'), + self = this; + $taglist.empty(); + $.each(tags, function(idx, tag) { + var $item = self.$listTmpl.octemplate({id: tag.id, name: tag.name}); + $item.appendTo($taglist); + }); + $(this).trigger('change', {type: type, tags: tags}); + if(typeof this.changed === 'function') { + this.changed(tags); + } + }, + _getTemplate: function() { + var defer = $.Deferred(); + if(!this.$template) { + var self = this; + $.get(OC.filePath('core', 'templates', 'tags.html'), function(tmpl) { + self.$template = $(tmpl); + self.$listTmpl = self.$template.find('.taglist li:first-child').detach(); + defer.resolve(self.$template); + }) + .fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + } else { + defer.resolve(this.$template); + } + return defer.promise(); + }, + _fillTagList: function(type) { + var self = this; + $.when(this.getTags(type)) + .then(function(tags) { + self._update(tags, type); + }) + .fail(function(response) { + console.warn(response); + }); + }, + _selectedIds: function() { + return $.map(this.$taglist.find('input:checked'), function(b) {return $(b).val();}); + }, + _handleChanges: function($list, $input) { + var ids = this._selectedIds(); + var buttons = []; + if($input.val().length) { + buttons.push(this.addButton); + } + if(ids.length) { + buttons.push(this.deleteButton); + } + this.$dialog.ocdialog('option', 'buttons', buttons); + }, + _deleteTags: function(self, type, ids) { + $.when(self.deleteTags(ids, type)) + .then(function() { + self._fillTagList(type); + self.$dialog.ocdialog('option', 'buttons', []); + }) + .fail(function(response) { + console.warn(response); + }); + }, + _addTag: function(self, type, tag) { + $.when(self.addTag(tag, type)) + .then(function(tag) { + self._fillTagList(type); + self.$taginput.val('').trigger('input'); + }) + .fail(function(response) { + console.warn(response); + }); + } +} + diff --git a/core/routes.php b/core/routes.php index 57e25c0f1f..4163bdcd5b 100644 --- a/core/routes.php +++ b/core/routes.php @@ -23,19 +23,43 @@ $this->create('core_ajax_share', '/core/ajax/share.php') // Translations $this->create('core_ajax_translations', '/core/ajax/translations.php') ->actionInclude('core/ajax/translations.php'); -// VCategories -$this->create('core_ajax_vcategories_add', '/core/ajax/vcategories/add.php') - ->actionInclude('core/ajax/vcategories/add.php'); -$this->create('core_ajax_vcategories_delete', '/core/ajax/vcategories/delete.php') - ->actionInclude('core/ajax/vcategories/delete.php'); -$this->create('core_ajax_vcategories_addtofavorites', '/core/ajax/vcategories/addToFavorites.php') - ->actionInclude('core/ajax/vcategories/addToFavorites.php'); -$this->create('core_ajax_vcategories_removefromfavorites', '/core/ajax/vcategories/removeFromFavorites.php') - ->actionInclude('core/ajax/vcategories/removeFromFavorites.php'); -$this->create('core_ajax_vcategories_favorites', '/core/ajax/vcategories/favorites.php') - ->actionInclude('core/ajax/vcategories/favorites.php'); -$this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php') - ->actionInclude('core/ajax/vcategories/edit.php'); +// Tags +$this->create('core_tags_tags', '/tags/{type}') + ->get() + ->action('OC\Core\Tags\Controller', 'getTags') + ->requirements(array('type')); +$this->create('core_tags_favorites', '/tags/{type}/favorites') + ->get() + ->action('OC\Core\Tags\Controller', 'getFavorites') + ->requirements(array('type')); +$this->create('core_tags_ids_for_tag', '/tags/{type}/ids') + ->get() + ->action('OC\Core\Tags\Controller', 'getIdsForTag') + ->requirements(array('type')); +$this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'favorite') + ->requirements(array('type', 'id')); +$this->create('core_tags_unfavorite', '/tags/{type}/infavorite/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'unFavorite') + ->requirements(array('type', 'id')); +$this->create('core_tags_tag', '/tags/{type}/tag/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'tagAs') + ->requirements(array('type', 'id')); +$this->create('core_tags_untag', '/tags/{type}/untag/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'unTag') + ->requirements(array('type', 'id')); +$this->create('core_tags_add', '/tags/{type}/add') + ->post() + ->action('OC\Core\Tags\Controller', 'addTag') + ->requirements(array('type')); +$this->create('core_tags_delete', '/tags/{type}/delete') + ->post() + ->action('OC\Core\Tags\Controller', 'deleteTags') + ->requirements(array('type')); // oC JS config $this->create('js_config', '/core/js/config.js') ->actionInclude('core/js/config.php'); diff --git a/core/tags/controller.php b/core/tags/controller.php new file mode 100644 index 0000000000..c790d43345 --- /dev/null +++ b/core/tags/controller.php @@ -0,0 +1,114 @@ +getTagManager()->load($type); + return $tagger; + } catch(\Exception $e) { + \OCP\Util::writeLog('core', __METHOD__ . ' Exception: ' . $e->getMessage(), \OCP\Util::ERROR); + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error loading tags'))); + exit; + } + } + + public static function getTags($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('tags'=> $tagger->getTags())); + } + + public static function getFavorites($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('ids'=> $tagger->getFavorites())); + } + + public static function getIdsForTag($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('ids'=> $tagger->getIdsForTag($_GET['tag']))); + } + + public static function addTag($args) { + $tagger = self::getTagger($args['type']); + + $id = $tagger->add(strip_tags($_POST['tag'])); + if($id === false) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Tag already exists'))); + } else { + \OC_JSON::success(array('id'=> $id)); + } + } + + public static function deleteTags($args) { + $tags = $_POST['tags']; + if(!is_array($tags)) { + $tags = array($tags); + } + + $tagger = self::getTagger($args['type']); + + if(!$tagger->delete($tags)) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error deleting tag(s)'))); + } else { + \OC_JSON::success(); + } + } + + public static function tagAs($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->tagAs($args['id'], $_POST['tag'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error tagging'))); + } else { + \OC_JSON::success(); + } + } + + public static function unTag($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->unTag($args['id'], $_POST['tag'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error untagging'))); + } else { + \OC_JSON::success(); + } + } + + public static function favorite($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->addToFavorites($args['id'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error favoriting'))); + } else { + \OC_JSON::success(); + } + } + + public static function unFavorite($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->removeFromFavorites($args['id'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error unfavoriting'))); + } else { + \OC_JSON::success(); + } + } + +} diff --git a/core/templates/tags.html b/core/templates/tags.html new file mode 100644 index 0000000000..ae3d072b38 --- /dev/null +++ b/core/templates/tags.html @@ -0,0 +1,14 @@ +
+
+
+
    +
  • + +
  • +
+
+
+ +
+
+
From f19a236c8e8c06f2a30212970714d66b68218e15 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 4 Oct 2013 17:24:28 +0200 Subject: [PATCH 014/139] Remove obsolete files. --- core/ajax/vcategories/add.php | 42 ---- core/ajax/vcategories/addToFavorites.php | 38 --- core/ajax/vcategories/delete.php | 40 ---- core/ajax/vcategories/edit.php | 34 --- core/ajax/vcategories/favorites.php | 30 --- core/ajax/vcategories/removeFromFavorites.php | 38 --- core/js/oc-vcategories.js | 216 ------------------ core/js/oc-vcategories.txt | 33 --- core/templates/edit_categories_dialog.php | 19 -- 9 files changed, 490 deletions(-) delete mode 100644 core/ajax/vcategories/add.php delete mode 100644 core/ajax/vcategories/addToFavorites.php delete mode 100644 core/ajax/vcategories/delete.php delete mode 100644 core/ajax/vcategories/edit.php delete mode 100644 core/ajax/vcategories/favorites.php delete mode 100644 core/ajax/vcategories/removeFromFavorites.php delete mode 100644 core/js/oc-vcategories.js delete mode 100644 core/js/oc-vcategories.txt delete mode 100644 core/templates/edit_categories_dialog.php diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php deleted file mode 100644 index 16a1461be0..0000000000 --- a/core/ajax/vcategories/add.php +++ /dev/null @@ -1,42 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$category = isset($_POST['category']) ? strip_tags($_POST['category']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Category type not provided.')); -} - -if(is_null($category)) { - bailOut($l->t('No category to add?')); -} - -debug(print_r($category, true)); - -$categories = new OC_VCategories($type); -if($categories->hasCategory($category)) { - bailOut($l->t('This category already exists: %s', array($category))); -} else { - $categories->add($category, true); -} - -OC_JSON::success(array('data' => array('categories'=>$categories->categories()))); diff --git a/core/ajax/vcategories/addToFavorites.php b/core/ajax/vcategories/addToFavorites.php deleted file mode 100644 index 52f62d5fc6..0000000000 --- a/core/ajax/vcategories/addToFavorites.php +++ /dev/null @@ -1,38 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -if(is_null($id)) { - bailOut($l->t('%s ID not provided.', $type)); -} - -$categories = new OC_VCategories($type); -if(!$categories->addToFavorites($id, $type)) { - bailOut($l->t('Error adding %s to favorites.', $id)); -} - -OC_JSON::success(); diff --git a/core/ajax/vcategories/delete.php b/core/ajax/vcategories/delete.php deleted file mode 100644 index dfec378574..0000000000 --- a/core/ajax/vcategories/delete.php +++ /dev/null @@ -1,40 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$type = isset($_POST['type']) ? $_POST['type'] : null; -$categories = isset($_POST['categories']) ? $_POST['categories'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -debug('The application using category type "' - . $type - . '" uses the default file for deletion. OC_VObjects will not be updated.'); - -if(is_null($categories)) { - bailOut($l->t('No categories selected for deletion.')); -} - -$vcategories = new OC_VCategories($type); -$vcategories->delete($categories); -OC_JSON::success(array('data' => array('categories'=>$vcategories->categories()))); diff --git a/core/ajax/vcategories/edit.php b/core/ajax/vcategories/edit.php deleted file mode 100644 index 0387b17576..0000000000 --- a/core/ajax/vcategories/edit.php +++ /dev/null @@ -1,34 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); -} - -OC_JSON::checkLoggedIn(); - -$l = OC_L10N::get('core'); - -$type = isset($_GET['type']) ? $_GET['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Category type not provided.')); -} - -$tmpl = new OCP\Template("core", "edit_categories_dialog"); - -$vcategories = new OC_VCategories($type); -$categories = $vcategories->categories(); -debug(print_r($categories, true)); -$tmpl->assign('categories', $categories); -$tmpl->printpage(); diff --git a/core/ajax/vcategories/favorites.php b/core/ajax/vcategories/favorites.php deleted file mode 100644 index db4244d601..0000000000 --- a/core/ajax/vcategories/favorites.php +++ /dev/null @@ -1,30 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$type = isset($_GET['type']) ? $_GET['type'] : null; - -if(is_null($type)) { - $l = OC_L10N::get('core'); - bailOut($l->t('Object type not provided.')); -} - -$categories = new OC_VCategories($type); -$ids = $categories->getFavorites($type); - -OC_JSON::success(array('ids' => $ids)); diff --git a/core/ajax/vcategories/removeFromFavorites.php b/core/ajax/vcategories/removeFromFavorites.php deleted file mode 100644 index 78a528caa8..0000000000 --- a/core/ajax/vcategories/removeFromFavorites.php +++ /dev/null @@ -1,38 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -if(is_null($id)) { - bailOut($l->t('%s ID not provided.', array($type))); -} - -$categories = new OC_VCategories($type); -if(!$categories->removeFromFavorites($id, $type)) { - bailOut($l->t('Error removing %s from favorites.', array($id))); -} - -OC_JSON::success(); diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js deleted file mode 100644 index c297a24680..0000000000 --- a/core/js/oc-vcategories.js +++ /dev/null @@ -1,216 +0,0 @@ -var OCCategories= { - category_favorites:'_$!!$_', - edit:function(type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $('body').append('
'); - $('#category_dialog').load( - OC.filePath('core', 'ajax', 'vcategories/edit.php') + '?type=' + type, function(response) { - try { - var jsondata = jQuery.parseJSON(response); - if(response.status == 'error') { - OC.dialogs.alert(response.data.message, t('core', 'Error')); - return; - } - } catch(e) { - var setEnabled = function(d, enable) { - if(enable) { - d.css('cursor', 'default').find('input,button:not(#category_addbutton)') - .prop('disabled', false).css('cursor', 'default'); - } else { - d.css('cursor', 'wait').find('input,button:not(#category_addbutton)') - .prop('disabled', true).css('cursor', 'wait'); - } - }; - var dlg = $('#edit_categories_dialog').dialog({ - modal: true, - height: 350, minHeight:200, width: 250, minWidth: 200, - buttons: { - 'Close': function() { - $(this).dialog('close'); - }, - 'Delete':function() { - var categories = $('#categorylist').find('input:checkbox').serialize(); - setEnabled(dlg, false); - OCCategories.doDelete(categories, function() { - setEnabled(dlg, true); - }); - }, - 'Rescan':function() { - setEnabled(dlg, false); - OCCategories.rescan(function() { - setEnabled(dlg, true); - }); - } - }, - close : function(event, ui) { - $(this).dialog('destroy').remove(); - $('#category_dialog').remove(); - }, - open : function(event, ui) { - $('#category_addinput').on('input',function() { - if($(this).val().length > 0) { - $('#category_addbutton').removeAttr('disabled'); - } - }); - $('#categoryform').submit(function() { - OCCategories.add($('#category_addinput').val()); - $('#category_addinput').val(''); - $('#category_addbutton').attr('disabled', 'disabled'); - return false; - }); - $('#category_addbutton').on('click',function(e) { - e.preventDefault(); - if($('#category_addinput').val().length > 0) { - OCCategories.add($('#category_addinput').val()); - $('#category_addinput').val(''); - } - }); - } - }); - } - }); - }, - _processDeleteResult:function(jsondata) { - if(jsondata.status == 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - }, - favorites:function(type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.getJSON(OC.filePath('core', 'ajax', 'categories/favorites.php'), {type: type},function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - addToFavorites:function(id, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/addToFavorites.php'), {id:id, type:type}, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status !== 'success') { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - removeFromFavorites:function(id, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/removeFromFavorites.php'), {id:id, type:type}, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status !== 'success') { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - doDelete:function(categories, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - if(categories == '' || categories == undefined) { - OC.dialogs.alert(t('core', 'No categories selected for deletion.'), t('core', 'Error')); - return false; - } - var self = this; - var q = categories + '&type=' + type; - if(this.app) { - q += '&app=' + this.app; - $.post(OC.filePath(this.app, 'ajax', 'categories/delete.php'), q, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - self._processDeleteResult(jsondata); - } - }); - } else { - $.post(OC.filePath('core', 'ajax', 'vcategories/delete.php'), q, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - self._processDeleteResult(jsondata); - } - }); - } - }, - add:function(category, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/add.php'),{'category':category, 'type':type},function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - rescan:function(app, cb) { - if(!app && !this.app) { - throw { name: 'MissingParameter', message: t('core', 'The app name is not specified.') }; - } - app = app ? app : this.app; - $.getJSON(OC.filePath(app, 'ajax', 'categories/rescan.php'),function(jsondata, status, xhr) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }).error(function(xhr){ - if (xhr.status == 404) { - var errormessage = t('core', 'The required file {file} is not installed!', - {file: OC.filePath(app, 'ajax', 'categories/rescan.php')}, t('core', 'Error')); - if(typeof cb == 'function') { - cb({status:'error', data:{message:errormessage}}); - } else { - OC.dialogs.alert(errormessage, t('core', 'Error')); - } - } - }); - }, - _update:function(categories) { - var categorylist = $('#categorylist'); - categorylist.find('li').remove(); - for(var category in categories) { - var item = '
  • ' + categories[category] + '
  • '; - $(item).appendTo(categorylist); - } - if(typeof OCCategories.changed === 'function') { - OCCategories.changed(categories); - } - } -} - diff --git a/core/js/oc-vcategories.txt b/core/js/oc-vcategories.txt deleted file mode 100644 index 31216f80bd..0000000000 --- a/core/js/oc-vcategories.txt +++ /dev/null @@ -1,33 +0,0 @@ -Using OCCategories - -This 'class' is meant for any apps that uses OC_VObjects with the CATEGORIES field e.g. -Contacts and Calendar. It provides an editor UI for adding/deleting and rescanning categories -and basic ajax functions for adding and deleting. -To use the mass updating of OC_VObjects that /lib/vcategories.php provides, the app must implement -its own ajax functions in /apps/$(APP)/ajax/categories/rescan.php and /apps/$(APP)/ajax/categories/delete.php -See examples in /apps/contacts/ajax/categories and the inline docs in /lib/vcategories.php. - -In your app make sure you load the script and stylesheet: - -OC_Util::addScript('','oc-vcategories'); -OC_Util::addStyle('','oc-vcategories'); - -Set the app specific values in your javascript file. This is what I've used for the Contacts app: - - OCCategories.app = 'contacts'; - OCCategories.changed = Contacts.UI.Card.categoriesChanged; - -If OCCategories.changed is set that function will be called each time the categories have been changed -in the editor (add/delete/rescan) to allow the app to update the UI accordingly. The only argument to the function -is an array of the updated categories e.g.: - -OCCategories.changed = function(categories) { - for(var category in categories) { - console.log(categories[category]); - } -} - -To show the categories editor call: - - OCCategories.edit() - diff --git a/core/templates/edit_categories_dialog.php b/core/templates/edit_categories_dialog.php deleted file mode 100644 index ea155bdf0b..0000000000 --- a/core/templates/edit_categories_dialog.php +++ /dev/null @@ -1,19 +0,0 @@ - -
    - -
    -
    -
      - -
    • - -
    -
    -
    - - -
    -
    -
    From 0736bfb43a0ecc81ba1eb38c4b32fea8ed454957 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Oct 2013 17:49:42 +0200 Subject: [PATCH 015/139] Do not call changeDirectory() when no dir set on breadcrumb Some apps like the files_trashbin app do not set a directory on its "home" breadcrumb link. This fix makes sure that the click event doesn't do anything in that case and lets the browser open the link. This fixes the "home" icon in the trashbin app which now correctly reopens the files app. --- apps/files/js/files.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 899bc6469e..09f5d6f114 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -701,7 +701,10 @@ function checkTrashStatus() { } function onClickBreadcrumb(e){ - var $el = $(e.target).closest('.crumb'); - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($el.data('dir'))); + var $el = $(e.target).closest('.crumb'), + $targetDir = $el.data('dir'); + if ($targetDir !== undefined){ + e.preventDefault(); + FileList.changeDirectory(decodeURIComponent($targetDir)); + } } From 6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 4 Oct 2013 19:55:03 +0200 Subject: [PATCH 016/139] Fix typo --- core/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/routes.php b/core/routes.php index 4163bdcd5b..5009243d59 100644 --- a/core/routes.php +++ b/core/routes.php @@ -40,7 +40,7 @@ $this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/') ->post() ->action('OC\Core\Tags\Controller', 'favorite') ->requirements(array('type', 'id')); -$this->create('core_tags_unfavorite', '/tags/{type}/infavorite/{id}/') +$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/') ->post() ->action('OC\Core\Tags\Controller', 'unFavorite') ->requirements(array('type', 'id')); From 0e0927a8876e02a32a162c16e31c20837a269e36 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 4 Oct 2013 20:02:33 +0200 Subject: [PATCH 017/139] It's 'status', not 'result'! --- core/js/tags.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/js/tags.js b/core/js/tags.js index a4c42905ee..16dd3d4bf9 100644 --- a/core/js/tags.js +++ b/core/js/tags.js @@ -135,7 +135,7 @@ OC.Tags= { self = this, url = OC.Router.generate('core_tags_tag', {type: type, id: id}); $.post(url, {tag: tag}, function(response) { - if(response.result === 'success') { + if(response.status === 'success') { defer.resolve(response); } else { defer.reject(response); @@ -159,7 +159,7 @@ OC.Tags= { self = this, url = OC.Router.generate('core_tags_untag', {type: type, id: id}); $.post(url, {tag: tag}, function(response) { - if(response.result === 'success') { + if(response.status === 'success') { defer.resolve(response); } else { defer.reject(response); @@ -183,7 +183,7 @@ OC.Tags= { self = this, url = OC.Router.generate('core_tags_favorite', {type: type, id: id}); $.post(url, function(response) { - if(response.result === 'success') { + if(response.status === 'success') { defer.resolve(response); } else { defer.reject(response); @@ -207,7 +207,7 @@ OC.Tags= { self = this, url = OC.Router.generate('core_tags_unfavorite', {type: type, id: id}); $.post(url, function(response) { - if(response.result === 'success') { + if(response.status === 'success') { defer.resolve(); } else { defer.reject(response); From e564a3a26627230951d86347fcf47aec40d1ca39 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Sat, 5 Oct 2013 19:18:18 +0200 Subject: [PATCH 018/139] OC_App: Cache list of enabled apps In my test here 1 SELECT instead of 5 (when doing a DAV request, probably similar for other requests) --- lib/private/app.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/private/app.php b/lib/private/app.php index 0ab1ee57f6..b4a7199217 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -165,10 +165,14 @@ class OC_App{ /** * get all enabled apps */ + private static $enabledAppsCache = array(); public static function getEnabledApps() { if(!OC_Config::getValue('installed', false)) { return array(); } + if(!empty(self::$enabledAppsCache)) { + return self::$enabledAppsCache; + } $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; @@ -187,6 +191,7 @@ class OC_App{ $apps[]=$row['appid']; } } + self::$enabledAppsCache = $apps; return $apps; } @@ -198,11 +203,11 @@ class OC_App{ * This function checks whether or not an app is enabled. */ public static function isEnabled( $app ) { - if( 'files'==$app or ('yes' == OC_Appconfig::getValue( $app, 'enabled' ))) { + if('files' == $app) { return true; } - - return false; + $enabledApps = self::getEnabledApps(); + return in_array($app, $enabledApps); } /** @@ -214,6 +219,7 @@ class OC_App{ * This function set an app as enabled in appconfig. */ public static function enable( $app ) { + self::$enabledAppsCache = array(); // flush if(!OC_Installer::isInstalled($app)) { // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string if(!is_numeric($app)) { @@ -257,6 +263,7 @@ class OC_App{ * This function set an app as disabled in appconfig. */ public static function disable( $app ) { + self::$enabledAppsCache = array(); // flush // 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' ); From c8c83e0e02d559d2ad5d449a8072ba07edf3317b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 6 Oct 2013 22:35:24 +0300 Subject: [PATCH 019/139] improve clickability of footer link --- core/css/styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..94d2cef6b8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -253,6 +253,8 @@ input[type="submit"].enabled { } #body-login p.info a { font-weight: bold; + padding: 13px; + margin: -13px; } #body-login #submit.login { margin-right:7px; } /* quick fix for log in button not being aligned with input fields, should be properly fixed by input field width later */ From 676ded0c63e47b162fd3a3a28e984e3576c8846b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 6 Oct 2013 22:40:29 +0300 Subject: [PATCH 020/139] properly indent contents of folders for app styles, to line up with text --- core/css/apps.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 49fb189f38..f68f53d699 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -104,8 +104,8 @@ padding-left: 32px; } #app-navigation > .with-icon ul li > a { - padding-left: 48px; - background-position: 24px center; + padding-left: 68px; + background-position: 44px center; } #app-navigation .open { From 94ae66c651978f9c8f981e23993ac5dd4cd84b3c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 6 Oct 2013 22:50:11 +0300 Subject: [PATCH 021/139] fix web interface showing very small when accessed on smartphone --- core/templates/layout.base.php | 1 + core/templates/layout.guest.php | 1 + core/templates/layout.user.php | 1 + 3 files changed, 3 insertions(+) diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index ea10c3042b..8caa9a0bbe 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9c9eb63382..cecd97ace2 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 71bec11d21..8d0ea71735 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -14,6 +14,7 @@ + From 730c80ff9c83ff1b027ab804ecad599fbcaf7bd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Oct 2013 15:11:47 +0200 Subject: [PATCH 022/139] adding additional exceptions for special cases where creating a file might not be allowed --- .../sabre/exception/entitytoolarge.php | 23 +++++++++++++++++++ .../sabre/exception/unsupportedmediatype.php | 22 ++++++++++++++++++ lib/private/connector/sabre/file.php | 7 ++++++ lib/public/files/entitytoolargeexception.php | 11 +++++++++ lib/public/files/invalidcontentexception.php | 11 +++++++++ lib/public/files/invalidpathexception.php | 11 +++++++++ 6 files changed, 85 insertions(+) create mode 100644 lib/private/connector/sabre/exception/entitytoolarge.php create mode 100644 lib/private/connector/sabre/exception/unsupportedmediatype.php create mode 100644 lib/public/files/entitytoolargeexception.php create mode 100644 lib/public/files/invalidcontentexception.php create mode 100644 lib/public/files/invalidpathexception.php diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php new file mode 100644 index 0000000000..aa9b37a049 --- /dev/null +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -0,0 +1,23 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class EntityTooLargeException extends \Exception {} diff --git a/lib/public/files/invalidcontentexception.php b/lib/public/files/invalidcontentexception.php new file mode 100644 index 0000000000..184ec4d06d --- /dev/null +++ b/lib/public/files/invalidcontentexception.php @@ -0,0 +1,11 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class InvalidContentException extends \Exception {} diff --git a/lib/public/files/invalidpathexception.php b/lib/public/files/invalidpathexception.php new file mode 100644 index 0000000000..36090ae5b4 --- /dev/null +++ b/lib/public/files/invalidpathexception.php @@ -0,0 +1,11 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class InvalidPathException extends \Exception {} From 6a411833b9167278aa5667412ee96c30e87f8241 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 7 Oct 2013 15:34:48 +0200 Subject: [PATCH 023/139] let admin specify timezone for log file entries --- config/config.sample.php | 3 +++ lib/private/log/owncloud.php | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 29085af471..a9b868ca9c 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -141,6 +141,9 @@ $CONFIG = array( /* date format to be used while writing to the owncloud logfile */ 'logdateformat' => 'F d, Y H:i:s', +/* timezone used while writing to the owncloud logfile (default: UTC) */ +'logtimezone' => 'Europe/Berlin', + /* Append all database queries and parameters to the log file. (watch out, this option can increase the size of your log file)*/ "log_query" => false, diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index d16b9537a1..528c6bc38b 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -50,9 +50,11 @@ class OC_Log_Owncloud { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { // default to ISO8601 - $format = OC_Config::getValue('logdateformat', 'c'); - $time = date($format, time()); - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); + $format = OC_Config::getValue('logdateformat', 'Y-m-d H:i:s'); + $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); + $timezone = new DateTimeZone($logtimezone); + $time = new DateTime(null, $timezone); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time->format($format)); $handle = @fopen(self::$logFile, 'a'); if ($handle) { fwrite($handle, json_encode($entry)."\n"); From 4af220d09e70b63195da2cb90f7556461cf29157 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 7 Oct 2013 17:38:27 +0200 Subject: [PATCH 024/139] Fix password screen for public shares MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Works in IE8, 9, 10, Firefox 24 and Chromium 30 * Credits to Julian Müller @Julian1998 --- apps/files_sharing/css/authenticate.css | 26 +++++++ apps/files_sharing/public.php | 2 + apps/files_sharing/templates/authenticate.php | 7 +- core/css/styles.css | 1 + core/img/actions/confirm.png | Bin 0 -> 190 bytes core/img/actions/confirm.svg | 65 ++++++++++++++++++ 6 files changed, 99 insertions(+), 2 deletions(-) create mode 100644 apps/files_sharing/css/authenticate.css create mode 100644 core/img/actions/confirm.png create mode 100644 core/img/actions/confirm.svg diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css new file mode 100644 index 0000000000..cebe906dd5 --- /dev/null +++ b/apps/files_sharing/css/authenticate.css @@ -0,0 +1,26 @@ +#body-login form label.infield { + width: 190px; + padding: 10px; + left: 8px; + top: 8px; +} + +#password { + width: 190px !important; + padding: 10px; + margin: 6px; +} + +input[type="submit"]{ + width: 45px; + height: 45px; + margin: 6px; + background-image: url('%webroot%/core/img/actions/confirm.svg'); + background-repeat: no-repeat; + background-position: center; +} + +#body-login input[type="submit"] { + position: absolute; + top: 0px; +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index eff38dcc0f..8bdbc8524e 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -77,6 +77,7 @@ if (isset($path)) { $hasher = new PasswordHash(8, $forcePortable); if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $linkItem['share_with']))) { + OCP\Util::addStyle('files_sharing', 'authenticate'); $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->assign('wrongpw', true); @@ -101,6 +102,7 @@ if (isset($path)) { || \OC::$session->get('public_link_authenticated') !== $linkItem['id'] ) { // Prompt for password + OCP\Util::addStyle('files_sharing', 'authenticate'); $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->printPage(); diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 2c89b5df3f..6b98e6c9f3 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,12 +1,15 @@
    + +
    t('This share is password-protected')); ?>
    + -
    t('The password is wrong. Try again.')); ?>
    +
    t('The password is wrong. Try again.')); ?>

    - +

    diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..a1ecd12398 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -237,6 +237,7 @@ input[type="submit"].enabled { #body-login p.info, #body-login form fieldset legend, #body-login #datadirContent label, +#body-login form fieldset .warning-info, #body-login form input[type="checkbox"]+label { text-align: center; color: #ccc; diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png new file mode 100644 index 0000000000000000000000000000000000000000..ccde88fb1e2185a58924ca8d5fc660db58f6ec0f GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHjRU8yBD9)}@kqKp}5W7sn8b)5!@7m^F^8pY&;Abe8}E zNeKzQ39p;}2i$R3$ymYr)1OIi`4xsWdO!WwDf)=G=pS#WT-Z1%bP0l+XkKcFH)h literal 0 HcmV?d00001 diff --git a/core/img/actions/confirm.svg b/core/img/actions/confirm.svg new file mode 100644 index 0000000000..bb3f9db2eb --- /dev/null +++ b/core/img/actions/confirm.svg @@ -0,0 +1,65 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + From 61a534fb60eb275344e6cf7890fdfe88657e53a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Oct 2013 17:49:21 +0200 Subject: [PATCH 025/139] moving createFileChunked() to OC_Connector_Sabre_File --- lib/private/connector/sabre/file.php | 49 +++++++++++++++++++--------- 1 file changed, 34 insertions(+), 15 deletions(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 8ffec371e3..f2191732c0 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -58,21 +58,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // chunked handling if (isset($_SERVER['HTTP_OC_CHUNKED'])) { - list(, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); - - $info = OC_FileChunking::decodeName($name); - if (empty($info)) { - throw new Sabre_DAV_Exception_NotImplemented(); - } - $chunk_handler = new OC_FileChunking($info); - $chunk_handler->store($info['index'], $data); - if ($chunk_handler->isComplete()) { - $newPath = $this->path . '/' . $info['name']; - $chunk_handler->file_assemble($newPath); - return $this->getETagPropertyForPath($newPath); - } - - return null; + return $this->createFileChunked($data); } // mark file as partial while uploading (ignored by the scanner) @@ -189,4 +175,37 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D return \OC\Files\Filesystem::getMimeType($this->path); } + + private function createFileChunked($data) + { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); + + $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } + $chunk_handler = new OC_FileChunking($info); + $bytesWritten = $chunk_handler->store($info['index'], $data); + + //detect aborted upload + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset($_SERVER['CONTENT_LENGTH'])) { + $expected = $_SERVER['CONTENT_LENGTH']; + if ($bytesWritten != $expected) { + $chunk_handler->cleanup(); + throw new Sabre_DAV_Exception_BadRequest( + 'expected filesize ' . $expected . ' got ' . $bytesWritten); + } + } + } + + if ($chunk_handler->isComplete()) { + $newPath = $path . '/' . $info['name']; + $chunk_handler->file_assemble($newPath); + return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); + } + + return null; + } + } From 77f43c357c01f43a8136f5def0d4768545fda88a Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 7 Oct 2013 22:24:25 +0300 Subject: [PATCH 026/139] User::delete should return bool --- lib/private/user.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/private/user.php b/lib/private/user.php index 04cd06b08b..b68786c773 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -198,6 +198,10 @@ class OC_User { // Delete user files in /data/ OC_Helper::rmdirr(OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid . '/'); + + return true; + } else { + return false; } } From c99c3ea9e62d5c150aaaecc4075f4ea35b4034ea Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 8 Oct 2013 02:40:13 +0200 Subject: [PATCH 027/139] Optimize confirm.[svg|png] with optipng and scour --- core/img/actions/confirm.png | Bin 190 -> 132 bytes core/img/actions/confirm.svg | 67 +++-------------------------------- 2 files changed, 4 insertions(+), 63 deletions(-) diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png index ccde88fb1e2185a58924ca8d5fc660db58f6ec0f..3021d4c27d6db047a0355b801a376d8f06b3e734 100644 GIT binary patch delta 9 QcmdnT*upqLWnx?c01%J^NB{r; delta 65 zcmZo++{ZXU#hfk4+ueoXKL{?^yL>VO0|RG)M`SSr1MhVZW^~e+T>%tiFY)wsWxvb8 P#>Hp2b*ZG@M8#wPo< - - - - - - - - - image/svg+xml - - - - - - - - + + + + From 0293d8e04f614c330be8aac7e968eec8469fb0e5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 11:26:49 +0200 Subject: [PATCH 028/139] If a existing file in Shared/ with update permissions gets updated we need to write the .part file to a different place because we can't create new files in the Shared folder --- lib/private/connector/sabre/file.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 12d7585884..43e25de40c 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -45,7 +45,9 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return string|null */ public function put($data) { + $fs = $this->getFS(); + if ($fs->file_exists($this->path) && !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); @@ -58,12 +60,14 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // chunked handling if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); $info = OC_FileChunking::decodeName($name); if (empty($info)) { throw new Sabre_DAV_Exception_NotImplemented(); } + $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { @@ -78,6 +82,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; + // if file is located in /Shared we write the part file to the users + // root folder because we can't create new files in /shared + // we extend the name with a random number to avoid overwriting a existing file + if (dirname($partpath) === 'Shared') { + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand(); + } + try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { From dd202d9ad3a542cb4c86baad92cadb2cb975afcf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 11:27:08 +0200 Subject: [PATCH 029/139] updating a existing large file creates new file chunks. Therefore createFile() needs to check not only if we can write to the parent folder but also if we can update the existing file" --- lib/private/connector/sabre/directory.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index af0dfd70f0..d033478036 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,8 +50,22 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (!\OC\Files\Filesystem::isCreatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); + // for chunked upload also updating a existing file is a "createFile" + // because we create all the chunks before reasamble them to the existing file. + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + + // exit if we can't create a new file and we don't updatable existing file + $info = OC_FileChunking::decodeName($name); + if (!\OC\Files\Filesystem::isCreatable($this->path) && + !\OC\Files\Filesystem::isUpdatable($this->path . '/' . $info['name'])) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + + } else { + // For non-chunked upload it is enough to check if we can create a new file + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $path = $this->path . '/' . $name; From c77f74e1defddaa277f85bc9b6242371a13fda42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 11:43:44 +0200 Subject: [PATCH 030/139] adding check isDeletable() on $sourcePath --- lib/private/connector/sabre/objecttree.php | 3 ++ tests/lib/connector/sabre/objecttree.php | 32 +++++++++++++--------- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index 80c3840b99..df8902f66e 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,6 +87,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { if (!$fs->isUpdatable($destinationDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } + if (!$fs->isDeletable($sourcePath)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $renameOkay = $fs->rename($sourcePath, $destinationPath); diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index 1d76bb5967..e32f2365f9 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -15,8 +15,9 @@ use Sabre_DAV_Exception_Forbidden; class TestDoubleFileView extends \OC\Files\View{ - public function __construct($updatables, $canRename = true) { + public function __construct($updatables, $deletables, $canRename = true) { $this->updatables = $updatables; + $this->deletables = $deletables; $this->canRename = $canRename; } @@ -24,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{ return $this->updatables[$path]; } + public function isDeletable($path) { + return $this->deletables[$path]; + } + public function rename($path1, $path2) { return $this->canRename; } @@ -35,31 +40,32 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @dataProvider moveFailedProvider * @expectedException Sabre_DAV_Exception_Forbidden */ - public function testMoveFailed($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveFailed($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); } /** * @dataProvider moveSuccessProvider */ - public function testMoveSuccess($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveSuccess($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); $this->assertTrue(true); } function moveFailedProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => false)), ); } function moveSuccessProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => true)), ); } @@ -68,7 +74,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @param $dest * @param $updatables */ - private function moveTest($source, $dest, $updatables) { + private function moveTest($source, $dest, $updatables, $deletables) { $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree', array('nodeExists', 'getNodeForPath'), @@ -80,7 +86,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ - $objectTree->fileView = new TestDoubleFileView($updatables); + $objectTree->fileView = new TestDoubleFileView($updatables, $deletables); $objectTree->move($source, $dest); } From 6c45fab0375bd8e6c02ba3081da7442b6d783c86 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 12:00:32 +0200 Subject: [PATCH 031/139] part file needs to have .part extension --- lib/private/connector/sabre/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 43e25de40c..037dba7f37 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -86,7 +86,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // root folder because we can't create new files in /shared // we extend the name with a random number to avoid overwriting a existing file if (dirname($partpath) === 'Shared') { - $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand(); + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; } try { From 209392587f594c0292bf39daf44657d20342aea4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Oct 2013 07:24:19 -0400 Subject: [PATCH 032/139] [tx-robot] updated from transifex --- apps/files_encryption/l10n/de.php | 4 ++ apps/files_encryption/l10n/de_DE.php | 4 ++ apps/user_webdavauth/l10n/mk.php | 6 ++- core/l10n/de.php | 2 + core/l10n/de_DE.php | 2 + core/l10n/fi_FI.php | 2 + core/l10n/gl.php | 2 + core/l10n/mk.php | 26 ++++++++++++- core/l10n/pt_BR.php | 2 + l10n/de/core.po | 10 ++--- l10n/de/files_encryption.po | 14 +++---- l10n/de_DE/core.po | 10 ++--- l10n/de_DE/files_encryption.po | 14 +++---- l10n/fi_FI/core.po | 10 ++--- l10n/gl/core.po | 10 ++--- l10n/mk/core.po | 55 ++++++++++++++------------- l10n/mk/lib.po | 6 +-- l10n/mk/settings.po | 57 ++++++++++++++-------------- l10n/mk/user_webdavauth.po | 9 +++-- l10n/pt_BR/core.po | 10 ++--- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/mk.php | 1 + settings/l10n/mk.php | 15 ++++++++ 34 files changed, 179 insertions(+), 116 deletions(-) diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 93a715d341..99548cb1ca 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.", "Private key password successfully updated." => "Passwort des privaten Schlüssels 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. Eventuell war das alte Passwort falsch.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", "Recovery key password" => "Wiederherstellungsschlüssel-Passwort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:", "Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort", "New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.", "Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 79fdbe995e..9d33d2100d 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "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.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", "Recovery key password" => "Wiederherstellungschlüsselpasswort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern", "Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort", "New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.", "Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.", diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php index 245a510134..6ebe36423b 100644 --- a/apps/user_webdavauth/l10n/mk.php +++ b/apps/user_webdavauth/l10n/mk.php @@ -1,3 +1,5 @@ - "URL: http://" + "Адреса:" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/de.php b/core/l10n/de.php index 7e292adcf3..d0513ea0b7 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktiere Deinen Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 95519c7d41..2dddea5e55 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktieren Sie Ihren Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index c6c9f09e1d..62a8ec294e 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -146,6 +146,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", "If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.", "Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.", +"Server side authentication failed!" => "Palvelimen puoleinen tunnistautuminen epäonnistui!", +"Please contact your administrator." => "Ota yhteys ylläpitäjään.", "Lost your password?" => "Unohditko salasanasi?", "remember" => "muista", "Log in" => "Kirjaudu sisään", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 3325a894f4..531788f171 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", "Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", +"Server side authentication failed!" => "A autenticación fracasou do lado do servidor!", +"Please contact your administrator." => "Contacte co administrador.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index dffd20ab3b..e574389652 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -1,13 +1,17 @@ "група", +"Updated database" => "Базата е надградена", +"Updated filecache" => "Кешот е надграден", "Category type not provided." => "Не беше доставен тип на категорија.", "No category to add?" => "Нема категорија да се додаде?", +"This category already exists: %s" => "Оваа категорија веќе постои: %s", "Object type not provided." => "Не беше доставен тип на објект.", "%s ID not provided." => "%s ID не беше доставено.", "Error adding %s to favorites." => "Грешка при додавање %s во омилени.", "No categories selected for deletion." => "Не е одбрана категорија за бришење.", "Error removing %s from favorites." => "Грешка при бришење на %s од омилени.", +"Invalid image" => "Невалидна фотографија", "Sunday" => "Недела", "Monday" => "Понеделник", "Tuesday" => "Вторник", @@ -45,10 +49,15 @@ $TRANSLATIONS = array( "Ok" => "Во ред", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Откажи", +"Continue" => "Продолжи", +"(all selected)" => "(сите одбрани)", +"({count} selected)" => "({count} одбраните)", +"Error loading file exists template" => "Грешка при вчитување на датотеката, шаблонот постои ", "The object type is not specified." => "Не е специфициран типот на објект.", "Error" => "Грешка", "The app name is not specified." => "Името на апликацијата не е специфицирано.", "The required file {file} is not installed!" => "Задолжителната датотека {file} не е инсталирана!", +"Shared" => "Споделен", "Share" => "Сподели", "Error while sharing" => "Грешка при споделување", "Error while unsharing" => "Грешка при прекин на споделување", @@ -59,6 +68,7 @@ $TRANSLATIONS = array( "Share with link" => "Сподели со врска", "Password protect" => "Заштити со лозинка", "Password" => "Лозинка", +"Allow Public Upload" => "Дозволи јавен аплоуд", "Email link to person" => "Прати врска по е-пошта на личност", "Send" => "Прати", "Set expiration date" => "Постави рок на траење", @@ -68,6 +78,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Повторно споделување не е дозволено", "Shared in {item} with {user}" => "Споделено во {item} со {user}", "Unshare" => "Не споделувај", +"notify user by email" => "извести го корисникот преку електронска пошта", "can edit" => "може да се измени", "access control" => "контрола на пристап", "create" => "креирај", @@ -80,9 +91,13 @@ $TRANSLATIONS = array( "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", "Warning" => "Предупредување", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud.", +"%s password reset" => "%s ресетирање на лозинката", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "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" => "Кон страницата за најава", @@ -95,11 +110,16 @@ $TRANSLATIONS = array( "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "Споделувањето ќе заврши на %s.\n\n", +"Cheers!" => "Поздрав!", "Edit categories" => "Уреди категории", "Add" => "Додади", "Security Warning" => "Безбедносно предупредување", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не е достапен безбеден генератор на случајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без сигурен генератор на случајни броеви напаѓач може да ги предвиди жетоните за ресетирање на лозинка и да преземе контрола врз Вашата сметка. ", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира.", "Create an admin account" => "Направете администраторска сметка", "Advanced" => "Напредно", "Data folder" => "Фолдер со податоци", @@ -111,12 +131,16 @@ $TRANSLATIONS = array( "Database tablespace" => "Табела во базата на податоци", "Database host" => "Сервер со база", "Finish setup" => "Заврши го подесувањето", +"Finishing …" => "Завршувам ...", "Log out" => "Одјава", "Automatic logon rejected!" => "Одбиена автоматска најава!", "If you did not change your password recently, your account may be compromised!" => "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана", "Please change your password to secure your account again." => "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно.", +"Please contact your administrator." => "Ве молиме контактирајте го вашиот администратор.", "Lost your password?" => "Ја заборавивте лозинката?", "remember" => "запамти", -"Log in" => "Најава" +"Log in" => "Најава", +"Alternative Logins" => "Алтернативни најавувања", +"Updating ownCloud to version %s, this may take a while." => "Надградбата на ownCloud на верзијата %s, може да потрае." ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index fc43814ae0..14e92921f4 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", "Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.", +"Server side authentication failed!" => "Autenticação do servidor falhou!", +"Please contact your administrator." => "Por favor, contate o administrador.", "Lost your password?" => "Esqueceu sua senha?", "remember" => "lembrar", "Log in" => "Fazer login", diff --git a/l10n/de/core.po b/l10n/de/core.po index a8c37a2967..6fc00e3c01 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-08 06:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -719,11 +719,11 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Serverseitige Authentifizierung fehlgeschlagen!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Bitte kontaktiere Deinen Administrator." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3599eb69e5..339fbbd064 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:18-0400\n" +"PO-Revision-Date: 2013-10-08 07:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,7 +65,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." #: files/error.php:12 msgid "" @@ -96,7 +96,7 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Deinem" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -117,7 +117,7 @@ msgstr "Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -141,7 +141,7 @@ msgstr "Neues Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index edd750f391..771cfbed42 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-08 06:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -719,11 +719,11 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Serverseitige Authentifizierung fehlgeschlagen!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Bitte kontaktieren Sie Ihren Administrator." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index d5577daf92..93cf6b98e2 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:18-0400\n" +"PO-Revision-Date: 2013-10-08 07:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." #: files/error.php:12 msgid "" @@ -93,7 +93,7 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Ihrem" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -114,7 +114,7 @@ msgstr "Wiederherstellungschlüsselpasswort" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -138,7 +138,7 @@ msgstr "Neues Wiederherstellungsschlüsselpasswort " #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index ba49002c8a..3b4f3373ca 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -713,11 +713,11 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Palvelimen puoleinen tunnistautuminen epäonnistui!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Ota yhteys ylläpitäjään." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index bf4f91c64b..bd36dc037f 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 17:50+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -712,11 +712,11 @@ msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "A autenticación fracasou do lado do servidor!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Contacte co administrador." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 9cc2a9ee06..8d2ed27ed9 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +42,7 @@ msgstr "" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базата е надградена" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." @@ -49,7 +50,7 @@ msgstr "" #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Кешот е надграден" #: ajax/update.php:26 #, php-format @@ -67,7 +68,7 @@ msgstr "Нема категорија да се додаде?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Оваа категорија веќе постои: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -105,7 +106,7 @@ msgstr "" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -297,19 +298,19 @@ msgstr "Откажи" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продолжи" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(сите одбрани)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} одбраните)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Грешка при вчитување на датотеката, шаблонот постои " #: 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 @@ -334,7 +335,7 @@ msgstr "Задолжителната датотека {file} не е инста #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Споделен" #: js/share.js:90 msgid "Share" @@ -378,7 +379,7 @@ msgstr "Лозинка" #: js/share.js:199 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволи јавен аплоуд" #: js/share.js:203 msgid "Email link to person" @@ -418,7 +419,7 @@ msgstr "Не споделувај" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "извести го корисникот преку електронска пошта" #: js/share.js:361 msgid "can edit" @@ -473,16 +474,16 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s ресетирање на лозинката" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -518,7 +519,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" @@ -576,18 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Споделувањето ќе заврши на %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Поздрав!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -604,7 +605,7 @@ msgstr "Безбедносно предупредување" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format @@ -627,7 +628,7 @@ msgstr "Без сигурен генератор на случајни брое msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира." #: templates/installation.php:41 #, php-format @@ -684,7 +685,7 @@ msgstr "Заврши го подесувањето" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Завршувам ..." #: templates/layout.user.php:41 #, php-format @@ -715,7 +716,7 @@ msgstr "" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Ве молиме контактирајте го вашиот администратор." #: templates/login.php:38 msgid "Lost your password?" @@ -731,7 +732,7 @@ msgstr "Најава" #: templates/login.php:52 msgid "Alternative Logins" -msgstr "" +msgstr "Алтернативни најавувања" #: templates/mail.php:15 #, php-format @@ -748,4 +749,4 @@ msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Надградбата на ownCloud на верзијата %s, може да потрае." diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 8b7a7df882..cc59cb6e64 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-08 07:21-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+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" @@ -63,7 +63,7 @@ msgstr "" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 17598ec848..954528d737 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:22-0400\n" +"PO-Revision-Date: 2013-10-07 20:40+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +29,11 @@ msgstr "Грешка во автентикација" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Вашето прикажано име се промени." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Не можам да го сменам прикажанато име" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -82,7 +83,7 @@ msgstr "Неможе да избришам корисник од група %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не можам да ја надградам апликацијата." #: changepassword/controller.php:20 msgid "Wrong password" @@ -115,7 +116,7 @@ msgstr "" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Надгради на {appversion}" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" @@ -127,7 +128,7 @@ msgstr "Овозможи" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Ве молам почекајте ..." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" @@ -139,11 +140,11 @@ msgstr "" #: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Надградувам ..." #: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Грешка додека ја надградувам апликацијата" #: js/apps.js:128 msgid "Error" @@ -155,7 +156,7 @@ msgstr "Ажурирај" #: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Надграден" #: js/personal.js:225 msgid "Select a profile picture" @@ -171,7 +172,7 @@ msgstr "Снимам..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "избришан" #: js/users.js:47 msgid "undo" @@ -179,36 +180,36 @@ msgstr "врати" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Не можам да го одстранам корисникот" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Избриши" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" -msgstr "" - -#: js/users.js:436 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:437 js/users.js:443 js/users.js:458 -msgid "Error creating user" -msgstr "" +msgstr "додади група" #: js/users.js:442 +msgid "A valid username must be provided" +msgstr "Мора да се обезбеди валидно корисничко име " + +#: js/users.js:443 js/users.js:449 js/users.js:464 +msgid "Error creating user" +msgstr "Грешка при креирање на корисникот" + +#: js/users.js:448 msgid "A valid password must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидна лозинка" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -229,7 +230,7 @@ msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Предупредување при подесување" #: templates/admin.php:32 msgid "" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 0de649364a..613044a3e8 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Georgi Stanojevski , 2012 +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:10+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Адреса:" #: templates/settings.php:7 msgid "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 50ddb1288b..dfd0add652 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -713,11 +713,11 @@ msgstr "Por favor troque sua senha para tornar sua conta segura novamente." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autenticação do servidor falhou!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor, contate o administrador." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 541877435d..abc217e840 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 aac13557b5..55994f472e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"POT-Creation-Date: 2013-10-08 07:17-0400\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 9c0e1c7acd..4d1d6082ad 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"POT-Creation-Date: 2013-10-08 07:18-0400\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 ccd2902034..63ca02e1ce 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 89ca241853..f9243675ac 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 71a310eaf0..a18bdeebff 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 c9d3851c6b..d9c63462a0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 43d1f696e2..c0fc8d680b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:21-0400\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/private.pot b/l10n/templates/private.pot index 9eb4e47d7c..58342afc80 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:22-0400\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 6403c9cc46..b52101627c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:22-0400\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 448d4b6c3a..ee5c4a8361 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\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 3d3aa1e694..3765664815 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 285dfd682a..19e36c868d 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Users" => "Корисници", "Admin" => "Админ", +"Invalid image" => "Невалидна фотографија", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 901ef9106e..77e7e52f99 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", +"Your display name has been changed." => "Вашето прикажано име се промени.", +"Unable to change display name" => "Не можам да го сменам прикажанато име", "Group already exists" => "Групата веќе постои", "Unable to add group" => "Неможе да додадам група", "Email saved" => "Електронската пошта е снимена", @@ -13,17 +15,30 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Администраторите неможе да се избришат себеси од админ групата", "Unable to add user to group %s" => "Неможе да додадам корисник во група %s", "Unable to remove user from group %s" => "Неможе да избришам корисник од група %s", +"Couldn't update app." => "Не можам да ја надградам апликацијата.", +"Update to {appversion}" => "Надгради на {appversion}", "Disable" => "Оневозможи", "Enable" => "Овозможи", +"Please wait...." => "Ве молам почекајте ...", +"Updating...." => "Надградувам ...", +"Error while updating app" => "Грешка додека ја надградувам апликацијата", "Error" => "Грешка", "Update" => "Ажурирај", +"Updated" => "Надграден", "Saving..." => "Снимам...", +"deleted" => "избришан", "undo" => "врати", +"Unable to remove user" => "Не можам да го одстранам корисникот", "Groups" => "Групи", "Group Admin" => "Администратор на група", "Delete" => "Избриши", +"add group" => "додади група", +"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ", +"Error creating user" => "Грешка при креирање на корисникот", +"A valid password must be provided" => "Мора да се обезбеди валидна лозинка", "__language_name__" => "__language_name__", "Security Warning" => "Безбедносно предупредување", +"Setup Warning" => "Предупредување при подесување", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", From 7c6ed6ab33e8487d6de135b5e956a82685bf4463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:03:24 +0200 Subject: [PATCH 033/139] catch exceptions while uploading and pass on the error message --- apps/files/ajax/upload.php | 51 ++++++++++++++++++++---------------- apps/files/js/file-upload.js | 2 +- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0920bf6210..45fb17de94 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -110,30 +110,35 @@ if (strpos($dir, '..') === false) { || (isset($_POST['resolution']) && $_POST['resolution']==='replace') ) { // upload and overwrite file - if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - - // updated max file size after upload - $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); - - $meta = \OC\Files\Filesystem::getFileInfo($target); - if ($meta === false) { - $error = $l->t('Upload failed. Could not get file info.'); + try + { + if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { + + // updated max file size after upload + $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); + + $meta = \OC\Files\Filesystem::getFileInfo($target); + if ($meta === false) { + $error = $l->t('Upload failed. Could not get file info.'); + } else { + $result[] = array('status' => 'success', + 'mime' => $meta['mimetype'], + 'mtime' => $meta['mtime'], + 'size' => $meta['size'], + 'id' => $meta['fileid'], + 'name' => basename($target), + 'originalname' => $files['tmp_name'][$i], + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize, + 'permissions' => $meta['permissions'], + ); + } + } else { - $result[] = array('status' => 'success', - 'mime' => $meta['mimetype'], - 'mtime' => $meta['mtime'], - 'size' => $meta['size'], - 'id' => $meta['fileid'], - 'name' => basename($target), - 'originalname' => $files['tmp_name'][$i], - 'uploadMaxFilesize' => $maxUploadFileSize, - 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], - ); + $error = $l->t('Upload failed. Could not find uploaded file'); } - - } else { - $error = $l->t('Upload failed. Could not find uploaded file'); + } catch(Exception $ex) { + $error = $ex->getMessage(); } } else { @@ -164,5 +169,5 @@ if ($error === false) { OCP\JSON::encodedPrint($result); exit(); } else { - OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats))); + OCP\JSON::error(array(array('data' => array_merge(array('message' => $error), $storageStats)))); } diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b52221ac1f..88d5a05107 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -365,7 +365,7 @@ $(document).ready(function() { } else if (result[0].status !== 'success') { //delete data.jqXHR; data.textStatus = 'servererror'; - data.errorThrown = result.data.message; // error message has been translated on server + data.errorThrown = result[0].data.message; // error message has been translated on server var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); fu._trigger('fail', e, data); } From caa27824a94e3af757ea33b01b5682ef963ae714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:04:31 +0200 Subject: [PATCH 034/139] catch specific file exceptions and convert them to proper http status code via webdav --- lib/private/connector/sabre/file.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 3c19da7c61..84154ee855 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -87,14 +87,21 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D throw new Sabre_DAV_Exception(); } } catch (\OCP\Files\NotPermittedException $e) { - throw new Sabre_DAV_Exception_Forbidden(); + // a more general case - due to whatever reason the content could not be written + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); + } catch (\OCP\Files\EntityTooLargeException $e) { - throw new OC_Connector_Sabre_Exception_EntityTooLarge(); + // the file is too big to be stored + throw new OC_Connector_Sabre_Exception_EntityTooLarge($e->getMessage()); + } catch (\OCP\Files\InvalidContentException $e) { - throw new OC_Connector_Sabre_Exception_UnsupportedMediaType(); + // the file content is not permitted + throw new OC_Connector_Sabre_Exception_UnsupportedMediaType($e->getMessage()); + } catch (\OCP\Files\InvalidPathException $e) { - // TODO: add specific exception here - throw new Sabre_DAV_Exception_Forbidden(); + // the path for the file was not valid + // TODO: find proper http status code for this case + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); } // rename to correct path From 176c2f150299e9ddc335158b27f4a61e45ef80ac Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 8 Oct 2013 16:33:56 +0300 Subject: [PATCH 035/139] Add unit tests --- tests/lib/user.php | 52 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/tests/lib/user.php b/tests/lib/user.php index 66c7f3f0d7..fdf9e7a08e 100644 --- a/tests/lib/user.php +++ b/tests/lib/user.php @@ -12,18 +12,26 @@ namespace Test; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { - + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + private $backend; + + protected function setUp(){ + $this->backend = $this->getMock('\OC_User_Dummy'); + $manager = \OC_User::getManager(); + $manager->registerBackend($this->backend); + } + public function testCheckPassword() { - /** - * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend - */ - $backend = $this->getMock('\OC_User_Dummy'); - $backend->expects($this->once()) + + $this->backend->expects($this->once()) ->method('checkPassword') ->with($this->equalTo('foo'), $this->equalTo('bar')) - ->will($this->returnValue('foo')); + ->will($this->returnValue('foo')) + ; - $backend->expects($this->any()) + $this->backend->expects($this->any()) ->method('implementsActions') ->will($this->returnCallback(function ($actions) { if ($actions === \OC_USER_BACKEND_CHECK_PASSWORD) { @@ -33,11 +41,33 @@ class User extends \PHPUnit_Framework_TestCase { } })); - $manager = \OC_User::getManager(); - $manager->registerBackend($backend); - $uid = \OC_User::checkPassword('foo', 'bar'); $this->assertEquals($uid, 'foo'); } + + public function testDeleteUser() { + $fail = \OC_User::deleteUser('victim'); + $this->assertFalse($fail); + + $success = \OC_User::createUser('victim', 'password'); + + $success = \OC_User::deleteUser('victim'); + $this->assertTrue($success); + } + + public function testCreateUser(){ + $this->backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_CREATE_USER) { + return true; + } else { + return false; + } + })); + + $user = \OC_User::createUser('newuser', 'newpassword'); + $this->assertEquals('newuser', $user->getUid()); + } } \ No newline at end of file From 3f27fefdbe1342701161bf0949dd719f34dab76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:40:42 +0200 Subject: [PATCH 036/139] fixing status code and formatting --- .../sabre/exception/entitytoolarge.php | 19 +++++++++---------- .../sabre/exception/unsupportedmediatype.php | 16 ++++++++-------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php index aa9b37a049..2bda51f2f3 100644 --- a/lib/private/connector/sabre/exception/entitytoolarge.php +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -1,23 +1,22 @@ Date: Tue, 8 Oct 2013 15:16:33 +0200 Subject: [PATCH 037/139] make sure that we only remove file/folder shares --- apps/files_sharing/appinfo/update.php | 4 ++-- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index bc33dd4043..87635a10b1 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -70,10 +70,10 @@ if (version_compare($installedVersion, '0.3', '<')) { } // clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.4', '<')) { +if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (`file`, `folder`)'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 448a0fa11c..09e9157034 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.4 \ No newline at end of file +0.3.5 \ No newline at end of file From 6284ab31de660e4400e7e244e2a71096e6ed8f3b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 8 Oct 2013 15:45:52 +0200 Subject: [PATCH 038/139] fix escaping --- apps/files_sharing/appinfo/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 87635a10b1..0d827da28e 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -73,7 +73,7 @@ if (version_compare($installedVersion, '0.3', '<')) { if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (`file`, `folder`)'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table From 835f36cb09c9eb13e7475ba49c89802e50b8eec9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 16:43:23 +0200 Subject: [PATCH 039/139] find users which are in the same group --- core/ajax/share.php | 2 +- lib/private/group.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 1166ea3198..dbad8f2e97 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -293,7 +293,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo while ($count < 15 && count($users) == $limit) { $limit = 15 - $count; if ($sharePolicy == 'groups_only') { - $users = OC_Group::DisplayNamesInGroups($groups, $_GET['search'], $limit, $offset); + $users = OC_Group::DisplayNamesInGroups($usergroups, $_GET['search'], $limit, $offset); } else { $users = OC_User::getDisplayNames($_GET['search'], $limit, $offset); } diff --git a/lib/private/group.php b/lib/private/group.php index ba93dc129a..9144ef683b 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -265,7 +265,7 @@ class OC_Group { public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchDisplayName($search . $limit, $offset); + $users = $group->searchDisplayName($search, $limit, $offset); $displayNames = array(); foreach ($users as $user) { $displayNames[] = $user->getDisplayName(); From cddb85c5886498771d0b92f1a22f17eeb98f44eb Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Oct 2013 17:19:58 +0200 Subject: [PATCH 040/139] Added filesApp flag as input field for files app detection Since the files app can be reached under multiple URLs, either root, files.php or public.php, a flag has been added to the DOM to help apps (like file viewers) to detect whether they are currently in the files app. --- apps/files/templates/index.php | 1 + apps/files_sharing/templates/public.php | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5e7ad41b0f..ebdca097e7 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -108,6 +108,7 @@ + diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index e53887c359..5d935f645e 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,6 +2,7 @@ + From 00a0588807d718119b52ae66ec7eb01678bf0369 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 29 Sep 2013 22:37:33 +0200 Subject: [PATCH 041/139] Test OC_User_Database in Test_User_Database instead of OC_User_Dummy. --- tests/lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index fe7d87c44d..9f21265c98 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -33,7 +33,7 @@ class Test_User_Database extends Test_User_Backend { } public function setUp() { - $this->backend=new OC_User_Dummy(); + $this->backend=new OC_User_Database(); } public function tearDown() { From 46cd3082b013f90fb8ce7269f40bb26d85bbee00 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:14:13 +0200 Subject: [PATCH 042/139] Test_User_Backend::getUser() does not return an array, it returns a string. --- tests/lib/user/backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 40674424c9..62ea0befbd 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -39,7 +39,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { /** * get a new unique user name * test cases can override this in order to clean up created user - * @return array + * @return string */ public function getUser() { return uniqid('test_'); From 1f11dc72009e25ba0c6259289431c192eae740df Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:22:45 +0200 Subject: [PATCH 043/139] Use parent:: in Test_User_Database::getUser(). --- tests/lib/user/database.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index 9f21265c98..d7cc39ae38 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -21,13 +21,8 @@ */ class Test_User_Database extends Test_User_Backend { - /** - * get a new unique user name - * test cases can override this in order to clean up created user - * @return array - */ public function getUser() { - $user=uniqid('test_'); + $user = parent::getUser(); $this->users[]=$user; return $user; } From 6eab36a89b790e2a9355384010f640c4017c03b2 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:48:49 +0200 Subject: [PATCH 044/139] Make OC_User_Dummy::checkPassword() compatible with OC_User_Example. The user id has to be returned. --- lib/private/user/dummy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index b5b7a6c3c7..f4d11428f2 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,8 +88,8 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid])) { - return ($this->users[$uid] == $password); + if (isset($this->users[$uid]) && $this->users[$uid] == $password) { + return $uid; } else { return false; } From 114e9d44032bdaf4e1c117e5859f4fe864b23c78 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:53:20 +0200 Subject: [PATCH 045/139] Adjust return value tests for checkPassword() to what OC_User_Example says. --- tests/lib/user/backend.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 62ea0befbd..1384c54a92 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -82,8 +82,8 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->assertTrue($this->backend->userExists($name1)); $this->assertTrue($this->backend->userExists($name2)); - $this->assertTrue($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name2, 'pass2')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'pass1')); + $this->assertSame($name2, $this->backend->checkPassword($name2, 'pass2')); $this->assertFalse($this->backend->checkPassword($name1, 'pass2')); $this->assertFalse($this->backend->checkPassword($name2, 'pass1')); @@ -93,7 +93,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->backend->setPassword($name1, 'newpass1'); $this->assertFalse($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name1, 'newpass1')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'newpass1')); $this->assertFalse($this->backend->checkPassword($name2, 'newpass1')); } } From 75588fc0b6556d64825e842d4cf62ea572792723 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 20:03:16 +0200 Subject: [PATCH 046/139] Use strict comparison === instead of ==. --- lib/private/user/dummy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index f4d11428f2..52be7edfa7 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,7 +88,7 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid]) && $this->users[$uid] == $password) { + if (isset($this->users[$uid]) && $this->users[$uid] === $password) { return $uid; } else { return false; From 3cf4c46c43e7ee7221eb26173bd530c3dd97d0b4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 20:42:35 +0200 Subject: [PATCH 047/139] catch unknown timezone and fall-back to UTC --- lib/private/log/owncloud.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 528c6bc38b..5123ba7f17 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -52,7 +52,11 @@ class OC_Log_Owncloud { // default to ISO8601 $format = OC_Config::getValue('logdateformat', 'Y-m-d H:i:s'); $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); - $timezone = new DateTimeZone($logtimezone); + try { + $timezone = new DateTimeZone($logtimezone); + } catch (Exception $e) { + $timezone = new DateTimeZone('UTC'); + } $time = new DateTime(null, $timezone); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time->format($format)); $handle = @fopen(self::$logFile, 'a'); From 6f3c49dabbc046f5a160565467a2735f3264d7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 21:52:54 +0200 Subject: [PATCH 048/139] fixing php 5.3 compatibility PHP Fatal error: Can't inherit abstract function OCP\ISession::set() (previously declared abstract in OC\Session\Session) --- lib/private/session/session.php | 35 ++++----------------------------- 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/lib/private/session/session.php b/lib/private/session/session.php index c55001ecca..fe160faa26 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -8,7 +8,10 @@ namespace OC\Session; -abstract class Session implements \ArrayAccess, \OCP\ISession { +use OCP\ISession; + +abstract class Session implements \ArrayAccess, ISession { + /** * $name serves as a namespace for the session keys * @@ -16,36 +19,6 @@ abstract class Session implements \ArrayAccess, \OCP\ISession { */ abstract public function __construct($name); - /** - * @param string $key - * @param mixed $value - */ - abstract public function set($key, $value); - - /** - * @param string $key - * @return mixed should return null if $key does not exist - */ - abstract public function get($key); - - /** - * @param string $key - * @return bool - */ - abstract public function exists($key); - - /** - * should not throw any errors if $key does not exist - * - * @param string $key - */ - abstract public function remove($key); - - /** - * removes all entries within the cache namespace - */ - abstract public function clear(); - /** * @param mixed $offset * @return bool From 51b581a84d6cb8e984605551599b7c37e7ff1386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:00:41 +0200 Subject: [PATCH 049/139] php 5.3 compatibility for \OC\Files\Storage --- lib/private/files/storage/storage.php | 279 -------------------------- 1 file changed, 279 deletions(-) diff --git a/lib/private/files/storage/storage.php b/lib/private/files/storage/storage.php index b673bb9a32..5be90f2475 100644 --- a/lib/private/files/storage/storage.php +++ b/lib/private/files/storage/storage.php @@ -14,278 +14,6 @@ namespace OC\Files\Storage; * All paths passed to the storage are relative to the storage and should NOT have a leading slash. */ interface Storage extends \OCP\Files\Storage { - /** - * $parameters is a free form array with the configuration options needed to construct the storage - * - * @param array $parameters - */ - public function __construct($parameters); - - /** - * 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(); - - /** - * see http://php.net/manual/en/function.mkdir.php - * - * @param string $path - * @return bool - */ - public function mkdir($path); - - /** - * see http://php.net/manual/en/function.rmdir.php - * - * @param string $path - * @return bool - */ - public function rmdir($path); - - /** - * see http://php.net/manual/en/function.opendir.php - * - * @param string $path - * @return resource - */ - public function opendir($path); - - /** - * see http://php.net/manual/en/function.is_dir.php - * - * @param string $path - * @return bool - */ - public function is_dir($path); - - /** - * see http://php.net/manual/en/function.is_file.php - * - * @param string $path - * @return bool - */ - public function 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); - - /** - * see http://php.net/manual/en/function.filetype.php - * - * @param string $path - * @return bool - */ - public function 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); - - /** - * check if a file can be created in $path - * - * @param string $path - * @return bool - */ - public function isCreatable($path); - - /** - * check if a file can be read - * - * @param string $path - * @return bool - */ - public function isReadable($path); - - /** - * check if a file can be written to - * - * @param string $path - * @return bool - */ - public function isUpdatable($path); - - /** - * check if a file can be deleted - * - * @param string $path - * @return bool - */ - public function isDeletable($path); - - /** - * check if a file can be shared - * - * @param string $path - * @return bool - */ - public function 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); - - /** - * see http://php.net/manual/en/function.file_exists.php - * - * @param string $path - * @return bool - */ - public function file_exists($path); - - /** - * see http://php.net/manual/en/function.filemtime.php - * - * @param string $path - * @return int - */ - public function filemtime($path); - - /** - * see http://php.net/manual/en/function.file_get_contents.php - * - * @param string $path - * @return string - */ - public function 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); - - /** - * see http://php.net/manual/en/function.unlink.php - * - * @param string $path - * @return bool - */ - public function unlink($path); - - /** - * see http://php.net/manual/en/function.rename.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function 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); - - /** - * see http://php.net/manual/en/function.fopen.php - * - * @param string $path - * @param string $mode - * @return resource - */ - public function 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); - - /** - * 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); - - /** - * see http://php.net/manual/en/function.free_space.php - * - * @param string $path - * @return int - */ - public function free_space($path); - - /** - * search for occurrences of $query in file names - * - * @param string $query - * @return array - */ - public function 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); - - /** - * 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); - - /** - * 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); - /** - * 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); /** * get a cache instance for the storage @@ -333,11 +61,4 @@ interface Storage extends \OCP\Files\Storage { */ public function getStorageCache(); - /** - * get the ETag for a file or folder - * - * @param string $path - * @return string - */ - public function getETag($path); } From 8a06f2e12882a883e1aaae41e7450d17cf746946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:05:19 +0200 Subject: [PATCH 050/139] php 5.3 compatibility for Test_Files_Sharing_Api --- apps/files_sharing/tests/api.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c55c186f08..63df0dd7dc 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -295,7 +295,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::getShare($params); $this->assertEquals(404, $result->getStatusCode()); - $this->assertEquals('share doesn\'t exist', $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertEquals('share doesn\'t exist', $meta['message']); } @@ -351,7 +352,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::updateShare($params); - $this->assertTrue($result->succeeded(), $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertTrue($result->succeeded(), $meta['message']); $items = \OCP\Share::getItemShared('file', $userShare['file_source']); From 7bd5352509e9d2dd51bded32144719bd83296fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:14:08 +0200 Subject: [PATCH 051/139] php 5.3 compatibility for \OC\AppFramework\DependencyInjection\DIContainer --- lib/private/appframework/dependencyinjection/dicontainer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 3755d45fa0..e62b72fd97 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -89,11 +89,12 @@ class DIContainer extends SimpleContainer implements IAppContainer{ return new SecurityMiddleware($c['API'], $c['Request']); }); - $this['MiddlewareDispatcher'] = $this->share(function($c){ + $middleWares = $this->middleWares; + $this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($this->middleWares as $middleWare) { + foreach($middleWares as $middleWare) { $dispatcher->registerMiddleware($middleWare); } From c1e5725db99e046792ce68edfea406259a8a2877 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 10:40:20 +0200 Subject: [PATCH 052/139] changed default time format to ISO8601 --- lib/private/log/owncloud.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 5123ba7f17..f3b4358440 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -50,7 +50,7 @@ class OC_Log_Owncloud { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { // default to ISO8601 - $format = OC_Config::getValue('logdateformat', 'Y-m-d H:i:s'); + $format = OC_Config::getValue('logdateformat', 'c'); $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); try { $timezone = new DateTimeZone($logtimezone); From 44049639189b8f93b34039ba063e4151e03dfaa7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 11:11:55 +0200 Subject: [PATCH 053/139] fix trashbin layout --- apps/files_trashbin/templates/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 82ba060883..9b01a2589a 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -17,7 +17,9 @@ + t( 'Deleted' )); ?> From 01371e318713183cef45b2471af2e80c9dc18e72 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 7 Oct 2013 18:06:27 +0200 Subject: [PATCH 054/139] Fixed login warning style #5065 Removed bold so it takes less space and set alignment to left. --- core/css/styles.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..be53b67c85 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -431,7 +431,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } padding: 10px; color: #d2322d; background-color: rgba(0,0,0,.3); - text-align: center; + text-align: left; border-radius: 3px; cursor: default; } @@ -466,7 +466,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #body-login .warning { margin: 0 7px 5px; - font-weight: bold; } #body-login .warning legend { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; From 9e3d28871e837d42fa495a9237bea24b0f0fd414 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 12:01:25 +0200 Subject: [PATCH 055/139] fix delete/restore individual files --- apps/files_trashbin/js/trash.js | 49 ++++++++++++++++----------------- 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index d73eadb601..c530727e62 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -4,14 +4,13 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { 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"); - var files = tr.attr('data-file'); - undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; + var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, + {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, function(result){ + console.log("get result"); for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -30,16 +29,12 @@ $(document).ready(function() { return OC.imagePath('core', 'actions/delete'); }, function (filename) { $('.tipsy').remove(); - var tr=$('tr').filterAttr('data-file', filename); var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); - var oldHTML = deleteAction[0].outerHTML; - var newHTML = ''; - var files = tr.attr('data-file'); - deleteAction[0].outerHTML = newHTML; + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, + {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, function(result){ for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); @@ -50,9 +45,10 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); - }); + } + ); - }); + }); // Sets the select_all checkbox behaviour : $('#select_all').click(function() { @@ -110,22 +106,23 @@ $(document).ready(function() { } $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:fileslist, dirlisting:dirlisting}, - function(result){ - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - }); - }); + {files:fileslist, dirlisting:dirlisting}, + function(result){ + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + } + ); + + }); $('.delete').click('click',function(event) { event.preventDefault(); - console.log("delete selected"); var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); From 31a91ef89294087335077b3ffea1b2a6d882c3ef Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 12:35:15 +0200 Subject: [PATCH 056/139] fix group delete/restore --- apps/files_trashbin/index.php | 2 +- apps/files_trashbin/js/trash.js | 35 ++++++++++++++++----------------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index d8661e170a..d079af3fb6 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -5,7 +5,6 @@ OCP\User::checkLoggedIn(); OCP\App::setActiveNavigationEntry('files_index'); -OCP\Util::addScript('files_trashbin', 'trash'); OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); @@ -15,6 +14,7 @@ OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); OCP\Util::addscript('files', 'files'); +OCP\Util::addScript('files_trashbin', 'trash'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index c530727e62..3cbe79686d 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -95,14 +95,13 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; disableActions(); for (var i=0; i'; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; disableActions(); for (var i=0; i Date: Wed, 9 Oct 2013 12:43:56 +0200 Subject: [PATCH 057/139] fix indention --- apps/files_trashbin/js/trash.js | 228 ++++++++++++++++---------------- 1 file changed, 114 insertions(+), 114 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 3cbe79686d..58821cd300 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -3,110 +3,110 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { - var tr=$('tr').filterAttr('data-file', filename); - var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + var tr = $('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file', filename).children("td.date").children(".action.delete"); deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); - $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ - console.log("get result"); - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - FileList.updateFileSummary(); - }); - - }); - }; - - FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { - return OC.imagePath('core', 'actions/delete'); - }, function (filename) { - $('.tipsy').remove(); - var tr=$('tr').filterAttr('data-file', filename); - var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); - deleteAction.removeClass('delete-icon').addClass('progress-icon'); - disableActions(); - $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - FileList.updateFileSummary(); - } - ); - - }); - - // Sets the select_all checkbox behaviour : - $('#select_all').click(function() { - if($(this).attr('checked')){ - // Check all - $('td.filename input:checkbox').attr('checked', true); - $('td.filename input:checkbox').parent().parent().addClass('selected'); - }else{ - // Uncheck all - $('td.filename input:checkbox').attr('checked', false); - $('td.filename input:checkbox').parent().parent().removeClass('selected'); - } - processSelection(); - }); - - $('td.filename input:checkbox').live('change',function(event) { - if (event.shiftKey) { - var last = $(lastChecked).parent().parent().prevAll().length; - var first = $(this).parent().parent().prevAll().length; - var start = Math.min(first, last); - var end = Math.max(first, last); - var rows = $(this).parent().parent().parent().children('tr'); - for (var i = start; i < end; i++) { - $(rows).each(function(index) { - if (index === i) { - var checkbox = $(this).children().children('input:checkbox'); - $(checkbox).attr('checked', 'checked'); - $(checkbox).parent().parent().addClass('selected'); + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); } - }); - } - } - var selectedCount=$('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if(!$(this).attr('checked')){ - $('#select_all').attr('checked',false); - }else{ - if(selectedCount==$('td.filename input:checkbox').length){ - $('#select_all').attr('checked',true); - } - } - processSelection(); + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + FileList.updateFileSummary(); + } + ); + }); + }; - $('.undelete').click('click',function(event) { - event.preventDefault(); - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; - disableActions(); - for (var i=0; i Date: Wed, 9 Oct 2013 13:15:53 +0200 Subject: [PATCH 058/139] fix checkbox --- apps/files_trashbin/js/trash.js | 52 ++++++++++----------------------- 1 file changed, 15 insertions(+), 37 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 58821cd300..5fcc60100b 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -61,11 +61,12 @@ $(document).ready(function() { $('td.filename input:checkbox').attr('checked', false); $('td.filename input:checkbox').parent().parent().removeClass('selected'); } - processSelection(); + procesSelection(); }); - $('td.filename input:checkbox').live('change', function(event) { + $('#fileList').on('click', 'td.filename a', function(event) { if (event.shiftKey) { + event.preventDefault(); var last = $(lastChecked).parent().parent().prevAll().length; var first = $(this).parent().parent().prevAll().length; var start = Math.min(first, last); @@ -73,7 +74,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index === i) { + if (index == i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -81,16 +82,21 @@ $(document).ready(function() { }); } } - var selectedCount = $('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if (!$(this).attr('checked')) { - $('#select_all').attr('checked', false); + var checkbox = $(this).parent().children('input:checkbox'); + lastChecked = checkbox; + if ($(checkbox).attr('checked')) { + $(checkbox).removeAttr('checked'); + $(checkbox).parent().parent().removeClass('selected'); + $('#select_all').removeAttr('checked'); } else { + $(checkbox).attr('checked', 'checked'); + $(checkbox).parent().parent().toggleClass('selected'); + var selectedCount = $('td.filename input:checkbox:checked').length; if (selectedCount == $('td.filename input:checkbox').length) { - $('#select_all').attr('checked', true); + $('#select_all').attr('checked', 'checked'); } } - processSelection(); + procesSelection(); }); $('.undelete').click('click', function(event) { @@ -178,34 +184,6 @@ $(document).ready(function() { }; }); -function processSelection(){ - var selected=getSelectedFiles(); - var selectedFiles=selected.filter(function(el){return el.type === 'file'}); - var selectedFolders=selected.filter(function(el){return el.type === 'dir'}); - if(selectedFiles.length === 0 && selectedFolders.length === 0) { - $('#headerName>span.name').text(t('files','Name')); - $('#modified').text(t('files','Deleted')); - $('table').removeClass('multiselect'); - $('.selectedActions').hide(); - } - else { - $('.selectedActions').show(); - var selection=''; - if(selectedFolders.length>0){ - selection += n('files', '%n folder', '%n folders', selectedFolders.length); - if(selectedFiles.length>0){ - selection+=' & '; - } - } - if(selectedFiles.length>0){ - selection += n('files', '%n file', '%n files', selectedFiles.length); - } - $('#headerName>span.name').text(selection); - $('#modified').text(''); - $('table').addClass('multiselect'); - } -} - /** * @brief get a list of selected files * @param string property (option) the property of the file requested From 45510f2fe0c393ceee905a5a2227015bf212e6dc Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 9 Oct 2013 13:54:41 +0200 Subject: [PATCH 059/139] 6.0 alpha 1 --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index b4396d1d2d..b3e34b5df4 100644 --- a/version.php +++ b/version.php @@ -1,10 +1,10 @@ Date: Wed, 9 Oct 2013 15:35:09 +0200 Subject: [PATCH 060/139] due to internal implementations touch will always be successful - $mtime will be stored in the cache from desktop client perspective it is necessary to set the mtime under every condition --- lib/private/connector/sabre/node.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index fa27abb381..c38e9f8637 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -147,12 +147,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Even if the modification time is set to a custom value the access time is set to now. */ public function touch($mtime) { - - // touch is only allowed if the update privilege is granted - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - \OC\Files\Filesystem::touch($this->path, $mtime); } From 38e5da05afede2e6dcd5465f47b3e4576ad37d64 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 15:56:21 +0200 Subject: [PATCH 061/139] only encrypt file to users with encryption keys --- apps/files_encryption/hooks/hooks.php | 2 -- apps/files_encryption/lib/stream.php | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 2df860a8e5..d9a76becf2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -92,8 +92,6 @@ class Hooks { } // Encrypt existing user files: - // This serves to upgrade old versions of the encryption - // app (see appinfo/spec.txt) if ( $util->encryptAll('/' . $params['uid'] . '/' . 'files', $session->getLegacyKey(), $params['password']) ) { diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 02955bb064..b25ba7bb67 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -506,9 +506,10 @@ class Stream { // Get all users sharing the file includes current user $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId); + $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); // Fetch public keys for all sharing users - $publicKeys = Keymanager::getPublicKeys($this->rootView, $uniqueUserIds); + $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']); // Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); From 7ab4fef7a9bee5ecad7ccf6fbc30cb8087861d4b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 16:17:43 +0200 Subject: [PATCH 062/139] update file summary after group delete/restore --- apps/files_trashbin/js/trash.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 5fcc60100b..4e83afcdb0 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -121,6 +121,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); } ); }); @@ -148,6 +149,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); } ); From 08a04357042e5f0b8946f2bdc13990b00db1cad7 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Wed, 9 Oct 2013 17:21:35 +0200 Subject: [PATCH 063/139] Added the config option to log ip addresses , default false --- config/config.sample.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/config.sample.php b/config/config.sample.php index 0afad880c1..fc0ff15cc9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -145,6 +145,9 @@ $CONFIG = array( (watch out, this option can increase the size of your log file)*/ "log_query" => false, +/* Enable or disable the logging of IP addresses in case of webform auth failures */ +"log_authfailip" => false, + /* * Configure the size in bytes log rotation should happen, 0 or false disables the rotation. * This rotates the current owncloud logfile to a new name, this way the total log usage From 7fe493fdb8d662b20b435c86aa23eb3b38a271b1 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 17:25:58 +0200 Subject: [PATCH 064/139] make sure that we only find file/folder shares --- lib/public/share.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index e6a74117aa..66605dafee 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -155,13 +155,13 @@ class Share { while ($source !== -1) { - // Fetch all shares of this file path from DB + // Fetch all shares with another user $query = \OC_DB::prepare( 'SELECT `share_with` FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_USER)); @@ -180,7 +180,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); @@ -201,7 +201,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); From 38c563dcdcfc46742a55be3b9b84a37512e203d3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 9 Oct 2013 20:34:18 +0200 Subject: [PATCH 065/139] don't trigger the create hooks when if the file already exists for file_put_contents --- lib/private/files/view.php | 3 ++- tests/lib/files/view.php | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc..f74b595c8d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -324,7 +324,8 @@ class View { return false; } } else { - return $this->basicOperation('file_put_contents', $path, array('create', 'write'), $data); + $hooks = ($this->file_exists($path)) ? array('write') : array('create', 'write'); + return $this->basicOperation('file_put_contents', $path, $hooks, $data); } } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b7..a5107c351f 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -391,4 +391,29 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + private $createHookPath; + + function dummyCreateHook($params) { + $this->createHookPath = $params['path']; + } + + public function testEditNoCreateHook() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot); + \OC_Hook::connect('OC_Filesystem', 'post_create', $this, 'dummyCreateHook'); + + $view = new \OC\Files\View($defaultRoot); + $this->hookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertEquals('/asd.txt', $this->createHookPath); + $this->createHookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertNull($this->createHookPath); + } } From 7f8eeb04747e88770a9eb49dffa028a36ab6cadc Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 9 Oct 2013 20:46:43 +0200 Subject: [PATCH 066/139] ensure the view's root is a subfolder of the the default root, not only starting the same --- lib/private/files/view.php | 5 ++++- tests/lib/files/view.php | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc..76c73ea23d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -709,7 +709,10 @@ class View { return false; } $defaultRoot = Filesystem::getRoot(); - return (strlen($this->fakeRoot) >= strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot)) === $defaultRoot); + if($this->fakeRoot === $defaultRoot){ + return true; + } + return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/'); } private function runHooks($hooks, $path, $post = false) { diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b7..e2107a0361 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -391,4 +391,22 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + /** + * @medium + */ + function testViewHooksIfRootStartsTheSame() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot . '_substorage'); + \OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); + + $subView = new \OC\Files\View($defaultRoot . '_substorage'); + $this->hookPath = null; + + $subView->file_put_contents('/foo.txt', 'asd'); + $this->assertNull($this->hookPath); + } } From a1719deabed4296c7daec51d926640100ac94980 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 10:47:35 +0200 Subject: [PATCH 067/139] make sure that we are logged in ad user1 while performing the tests --- apps/files_sharing/tests/api.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c55c186f08..2feea9e7e2 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -58,6 +58,10 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { } function setUp() { + + //login as user1 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + $this->data = 'foobar'; $this->view = new \OC_FilesystemView('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files'); @@ -104,9 +108,6 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { */ function testCreateShare() { - //login as user1 - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - // share to user // simulate a post request From e88b493136f2378ff403d920217e9a5af1231ee3 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 10 Oct 2013 11:10:32 +0200 Subject: [PATCH 068/139] Fixed external storage status indicator in admin page - Fixes #5241 - Fixed indicator to appear, its selector was wrong - Added spinner while saving an entry's settings - Removed ajax "async: false" that blocked the browser while saving --- apps/files_external/css/settings.css | 7 ++-- apps/files_external/js/settings.js | 51 ++++++++++++++++------------ 2 files changed, 32 insertions(+), 26 deletions(-) diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index f2f40247b2..74b1402846 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,7 +4,9 @@ td.status > span { width: 16px; vertical-align: text-bottom; } - +span.loading{ + background-size: 16px 16px; +} span.success { background: #37ce02; border-radius: 8px; @@ -12,9 +14,6 @@ span.success { span.error { background: #ce3702; } -span.waiting { - background: none; -} td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 3e605c59a9..3e92bc87e8 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1,10 +1,23 @@ +(function(){ + +function updateStatus(statusEl, result){ + statusEl.removeClass('success error loading'); + if (result && result.status == 'success' && result.data.message) { + statusEl.addClass('success'); + return true; + } else { + statusEl.addClass('error'); + return false; + } +} + OC.MountConfig={ saveStorage:function(tr) { var mountPoint = $(tr).find('.mountPoint input').val(); if (mountPoint == '') { return false; } - var statusSpan = $(tr).find('.status span'); + var statusSpan = $(tr).closest('tr').find('.status span'); var backendClass = $(tr).find('.backend').data('class'); var configuration = $(tr).find('.configuration input'); var addMountPoint = true; @@ -58,6 +71,7 @@ OC.MountConfig={ } users.push(applicable); } + statusSpan.addClass('loading').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -68,15 +82,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); }); @@ -93,8 +103,7 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); var mountType = 'user'; @@ -108,14 +117,14 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); } else { var isPersonal = true; var mountType = 'user'; var applicable = OC.currentUser; + statusSpan.addClass('loading').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -126,15 +135,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); } @@ -157,7 +162,7 @@ $(document).ready(function() { $(tr).find('.mountPoint input').val(suggestMountPoint(selected)); } $(tr).addClass(backendClass); - $(tr).find('.status').append(''); + $(tr).find('.status').append(''); $(tr).find('.backend').data('class', backendClass); var configurations = $(this).data('configurations'); var td = $(tr).find('td.configuration'); @@ -293,3 +298,5 @@ $(document).ready(function() { }); }); + +})(); From bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 10 Oct 2013 12:21:02 +0200 Subject: [PATCH 069/139] Fixed files view regular file actions in IE8 Fixes #5256 A missing closing span broken the container in IE8 which prevented the file actions to be appended properly. --- apps/files/templates/part.list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 0679da334d..a6d2e44f34 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -36,7 +36,7 @@ $totalsize = 0; ?> - + From 9b0454380ccef34368a0a5227857788877722085 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Thu, 10 Oct 2013 14:15:13 +0200 Subject: [PATCH 070/139] changed the argument to false for getValue , reformated else statement --- lib/base.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/base.php b/lib/base.php index e8a4d3f87a..cceb82ef47 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,11 +730,10 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; - if ( OC_Config::getValue('log_authfailip', '') ) { + if ( OC_Config::getValue('log_authfailip', false) ) { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], OC_Log::WARN); - } - else { + } else { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', OC_Log::WARN); } From e56947255e0760c6c560fa15f67468c966919685 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 14:43:40 +0200 Subject: [PATCH 071/139] don't use glob() and getLocalFile(), this can lead to problems on windows servers --- apps/files_versions/lib/versions.php | 146 +++++++++++---------------- 1 file changed, 61 insertions(+), 85 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index fc8d0365c7..4ad272e43c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -238,60 +238,35 @@ class Storage { * @param $filename file to find versions of, relative to the user files dir * @returns array */ - public static function getVersions($uid, $filename ) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/' . $uid . '/files_versions'); - $versionsName = $versions_fileview->getLocalFile($filename).'.v'; - $escapedVersionName = preg_replace('/(\*|\?|\[)/', '[$1]', $versionsName); + public static function getVersions($uid, $filename) { + $versions = array(); + // fetch for old versions + $view = new \OC\Files\View('/' . $uid . '/files_versions/'); + $files = $view->getDirectoryContent(dirname($filename)); - $versions = array(); - // fetch for old versions - $matches = glob($escapedVersionName.'*'); + $versionedFile = pathinfo($filename, PATHINFO_BASENAME); - if ( !$matches ) { - return $versions; - } - - sort( $matches ); - - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $local_file = $files_view->getLocalFile($filename); - $local_file_md5 = \md5_file( $local_file ); - - foreach( $matches as $ma ) { - $parts = explode( '.v', $ma ); - $version = ( end( $parts ) ); - $key = $version.'#'.$filename; - $versions[$key]['cur'] = 0; - $versions[$key]['version'] = $version; - $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); - $versions[$key]['path'] = $filename; - $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); - $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version); - - // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == $local_file_md5 ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); - - } - - // newest versions first - $versions = array_reverse( $versions ); - - foreach( $versions as $key => $value ) { - // flag the first matched file in array (which will have latest modification date) as current version - if ( $value['fileMatch'] ) { - $value['cur'] = 1; - break; + foreach ($files as $file) { + if ($file['type'] === 'file') { + $pos = strrpos($file['path'], '.v'); + $length = $pos - strlen('files_versions/'); + if (substr($file['path'], strlen('files_versions/'), $length) === $versionedFile) { + $version = substr($file['path'], $pos + 2); + $key = $version . '#' . $filename; + $versions[$key]['cur'] = 0; + $versions[$key]['version'] = $version; + $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); + $versions[$key]['path'] = $filename; + $versions[$key]['size'] = $file['size']; } } - - return( $versions ); - - } else { - // if versioning isn't enabled then return an empty array - return( array() ); } + // sort with oldest version first + ksort($versions); + + // return newest versions first + return array_reverse($versions); } /** @@ -366,48 +341,49 @@ class Storage { * @return array with contains two arrays 'all' which contains all versions sorted by age and 'by_file' which contains all versions sorted by filename */ private static function getAllVersions($uid) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); - $versionsRoot = $versions_fileview->getLocalFolder(''); + $view = new \OC\Files\View('/' . $uid . '/'); + $versionsPath = 'files_versions/'; + $dirs = array($versionsPath); - $iterator = new \RecursiveIteratorIterator( - new \RecursiveDirectoryIterator($versionsRoot), - \RecursiveIteratorIterator::CHILD_FIRST - ); + while (!empty($dirs)) { + $dir = array_pop($dirs); + $files = $view->getDirectoryContent($dir); - $versions = array(); - - foreach ($iterator as $path) { - if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) { - $relpath = substr($path, strlen($versionsRoot)-1); - $versions[$match[1].'#'.$relpath] = array('path' => $relpath, 'timestamp' => $match[1]); + foreach ($files as $file) { + if ($file['type'] === 'dir') { + array_push($dirs, $file['path']); + } else { + $versionsBegin = strrpos($file['path'], '.v'); + $relPathStart = strlen($versionsPath); + $version = substr($file['path'], $versionsBegin + 2); + $relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart); + $key = $version . '#' . $relpath; + $versions[$key] = array('path' => $relpath, 'timestamp' => $version); } } - - ksort($versions); - - $i = 0; - - $result = array(); - - foreach( $versions as $key => $value ) { - $i++; - $size = $versions_fileview->filesize($value['path']); - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - - $result['all'][$key]['version'] = $value['timestamp']; - $result['all'][$key]['path'] = $filename; - $result['all'][$key]['size'] = $size; - - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - $result['by_file'][$filename][$key]['version'] = $value['timestamp']; - $result['by_file'][$filename][$key]['path'] = $filename; - $result['by_file'][$filename][$key]['size'] = $size; - - } - - return $result; } + + ksort($versions); + + $i = 0; + + $result = array(); + + foreach ($versions as $key => $value) { + $i++; + $size = $view->filesize($value['path']); + $filename = $value['path']; + + $result['all'][$key]['version'] = $value['timestamp']; + $result['all'][$key]['path'] = $filename; + $result['all'][$key]['size'] = $size; + + $result['by_file'][$filename][$key]['version'] = $value['timestamp']; + $result['by_file'][$filename][$key]['path'] = $filename; + $result['by_file'][$filename][$key]['size'] = $size; + } + + return $result; } /** From bb3b38947d2b012b4fef0cdd32f62524b2c5898c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 14:57:25 +0200 Subject: [PATCH 072/139] add missing preview link --- apps/files_versions/lib/versions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 4ad272e43c..5b291dfa10 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -256,6 +256,7 @@ class Storage { $versions[$key]['cur'] = 0; $versions[$key]['version'] = $version; $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); + $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); $versions[$key]['path'] = $filename; $versions[$key]['size'] = $file['size']; } From 909af2b62e75d1a5db866466074f2bcb95b864dc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 15:02:52 +0200 Subject: [PATCH 073/139] don't cache if the encryption is enabled, this can lead to problems during unit testing --- apps/files_encryption/lib/proxy.php | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 6f630c83a3..8621c1ba51 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -38,8 +38,6 @@ class Proxy extends \OC_FileProxy { private static $blackList = null; //mimetypes blacklisted from encryption - private static $enableEncryption = null; - /** * Check if a file requires encryption * @param string $path @@ -49,46 +47,22 @@ class Proxy extends \OC_FileProxy { */ private static function shouldEncrypt($path) { - if (is_null(self::$enableEncryption)) { - if ( - \OCP\App::isEnabled('files_encryption') === true - && Crypt::mode() === 'server' - ) { - - self::$enableEncryption = true; - - } else { - - self::$enableEncryption = false; - - } - - } - - if (!self::$enableEncryption) { - + if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server') { return false; - } if (is_null(self::$blackList)) { - self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', '')); - } if (Crypt::isCatfileContent($path)) { - return true; - } $extension = substr($path, strrpos($path, '.') + 1); if (array_search($extension, self::$blackList) === false) { - return true; - } return false; From bc6e352ccd41f0641144fc1fc2d4e52e8f5532c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 10 Oct 2013 16:06:26 +0200 Subject: [PATCH 074/139] the path need to be normalized before putting it into resolvePath() otherwise the returned internalPath will not match followup calls to e.g. Cache::getID() --- lib/private/files/view.php | 4 +++- tests/lib/files/view.php | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index f74b595c8d..086e7487a6 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -110,7 +110,9 @@ class View { * @return array consisting of the storage and the internal path */ public function resolvePath($path) { - return Filesystem::resolvePath($this->getAbsolutePath($path)); + $a = $this->getAbsolutePath($path); + $p = Filesystem::normalizePath($a); + return Filesystem::resolvePath($p); } /** diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index a5107c351f..205afba707 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -416,4 +416,38 @@ class View extends \PHPUnit_Framework_TestCase { $view->file_put_contents('/asd.txt', 'foo'); $this->assertNull($this->createHookPath); } + + /** + * @dataProvider resolvePathTestProvider + */ + public function testResolvePath($expected, $pathToTest) { + $storage1 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + + $view = new \OC\Files\View(''); + + $result = $view->resolvePath($pathToTest); + $this->assertEquals($expected, $result[1]); + + $exists = $view->file_exists($pathToTest); + $this->assertTrue($exists); + + $exists = $view->file_exists($result[1]); + $this->assertTrue($exists); + } + + function resolvePathTestProvider() { + return array( + array('foo.txt', 'foo.txt'), + array('foo.txt', '/foo.txt'), + array('folder', 'folder'), + array('folder', '/folder'), + array('folder', 'folder/'), + array('folder', '/folder/'), + array('folder/bar.txt', 'folder/bar.txt'), + array('folder/bar.txt', '/folder/bar.txt'), + array('', ''), + array('', '/'), + ); + } } From 92009c5d8eb48d8ea89ab6ee803d8a47a7ff98c0 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 16:58:11 +0200 Subject: [PATCH 075/139] fix getVersions() for sub directories --- apps/files_versions/lib/versions.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 5b291dfa10..8151324696 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -249,8 +249,9 @@ class Storage { foreach ($files as $file) { if ($file['type'] === 'file') { $pos = strrpos($file['path'], '.v'); - $length = $pos - strlen('files_versions/'); - if (substr($file['path'], strlen('files_versions/'), $length) === $versionedFile) { + $length = $pos - strlen('files_versions/'.dirname($filename)); + $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v')); + if ($currentFile === $versionedFile) { $version = substr($file['path'], $pos + 2); $key = $version . '#' . $filename; $versions[$key]['cur'] = 0; From 4c2e3919dec7077b00c2df836658dc41338e7d09 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 17:23:27 +0200 Subject: [PATCH 076/139] make previews work for shared files in the versions drop-down --- apps/files_versions/ajax/preview.php | 15 +++++++++++---- apps/files_versions/lib/versions.php | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php index c24134df53..6fd374711c 100644 --- a/apps/files_versions/ajax/preview.php +++ b/apps/files_versions/ajax/preview.php @@ -6,31 +6,38 @@ * See the COPYING-README file. */ \OC_Util::checkLoggedIn(); - +error_log("get preview!"); if(!\OC_App::isEnabled('files_versions')){ exit; } $file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : ''; +$user = array_key_exists('user', $_GET) ? $_GET['user'] : ''; $maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : 44; $maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : 44; $version = array_key_exists('version', $_GET) ? $_GET['version'] : ''; $scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true; +if($user === '') { + \OC_Response::setStatus(400); //400 Bad Request + \OC_Log::write('versions-preview', 'No user parameter was passed', \OC_Log::DEBUG); + exit; +} + if($file === '' && $version === '') { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'No file parameter was passed', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'No file parameter was passed', \OC_Log::DEBUG); exit; } if($maxX === 0 || $maxY === 0) { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'x and/or y set to 0', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'x and/or y set to 0', \OC_Log::DEBUG); exit; } try{ - $preview = new \OC\Preview(\OC_User::getUser(), 'files_versions'); + $preview = new \OC\Preview($user, 'files_versions'); $preview->setFile($file.'.v'.$version); $preview->setMaxX($maxX); $preview->setMaxY($maxY); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 8151324696..7d765e28ce 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -257,7 +257,7 @@ class Storage { $versions[$key]['cur'] = 0; $versions[$key]['version'] = $version; $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); - $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); + $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version, 'user' => $uid)); $versions[$key]['path'] = $filename; $versions[$key]['size'] = $file['size']; } From 3dd313dca2ce1aa94510aa8639d5aa8ad6db3185 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 19:46:45 +0200 Subject: [PATCH 077/139] add "received_from" and "received_from_displayname" field in case of a reshared file to the output --- apps/files_sharing/lib/api.php | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index e662462489..bd9beddf06 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -31,11 +31,11 @@ class Api { * @return \OC_OCS_Result share information */ public static function getAllShares($params) { - // if a file is specified, get the share for this file if (isset($_GET['path'])) { $params['itemSource'] = self::getFileId($_GET['path']); $params['path'] = $_GET['path']; + $params['itemType'] = self::getItemType($_GET['path']); if (isset($_GET['subfiles']) && $_GET['subfiles'] === 'true') { return self::getSharesFromFolder($params); } @@ -59,20 +59,22 @@ class Api { * @return \OC_OCS_Result share information */ public static function getShare($params) { - // either the $params already contains a itemSource if we come from // getAllShare() or we need to translate the shareID to a itemSource if(isset($params['itemSource'])) { $itemSource = $params['itemSource']; + $itemType = $params['itemType']; $getSpecificShare = true; } else { $s = self::getShareFromId($params['id']); $itemSource = $s['item_source']; + $itemType = $s['item_type']; $getSpecificShare = false; } if ($itemSource !== null) { - $shares = \OCP\Share::getItemShared('file', $itemSource); + $shares = \OCP\Share::getItemShared($itemType, $itemSource); + $reshare = \OCP\Share::getItemSharedWithBySource($itemType, $itemSource); // if a specific share was specified only return this one if ($getSpecificShare === false) { foreach ($shares as $share) { @@ -82,6 +84,10 @@ class Api { } } } + if ($reshare) { + $shares['received_from'] = $reshare['uid_owner']; + $shares['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']); + } } else { $shares = null; } @@ -110,7 +116,14 @@ class Api { $result = array(); foreach ($content as $file) { - $share = \OCP\Share::getItemShared('file', $file['fileid']); + // workaround because folders are named 'dir' in this context + $itemType = $file['type'] === 'file' ? 'file' : 'folder'; + $share = \OCP\Share::getItemShared($itemType, $file['fileid']); + $reshare = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); + if ($reshare) { + $share['received_from'] = $reshare['uid_owner']; + $share['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']); + } if ($share) { $share['filename'] = $file['name']; $result[] = $share; @@ -132,7 +145,6 @@ class Api { if($path === null) { return new \OC_OCS_Result(null, 400, "please specify a file or folder path"); } - $itemSource = self::getFileId($path); $itemType = self::getItemType($path); @@ -184,7 +196,7 @@ class Api { if ($token) { $data = array(); $data['id'] = 'unknown'; - $shares = \OCP\Share::getItemShared('file', $itemSource); + $shares = \OCP\Share::getItemShared($itemType, $itemSource); if(is_string($token)) { //public link share foreach ($shares as $share) { if ($share['token'] === $token) { @@ -414,7 +426,6 @@ class Api { $view = new \OC\Files\View('/'.\OCP\User::getUser().'/files'); $fileId = null; - $fileInfo = $view->getFileInfo($path); if ($fileInfo) { $fileId = $fileInfo['fileid']; From 87cccb2e32a7e09f9df95b41909964bad5b4acb7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 20:06:42 +0200 Subject: [PATCH 078/139] some small changes/fixes --- apps/files_versions/lib/versions.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 8151324696..48c25831eb 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -242,14 +242,16 @@ class Storage { $versions = array(); // fetch for old versions $view = new \OC\Files\View('/' . $uid . '/files_versions/'); - $files = $view->getDirectoryContent(dirname($filename)); - $versionedFile = pathinfo($filename, PATHINFO_BASENAME); + $pathinfo = pathinfo($filename); + + $files = $view->getDirectoryContent($pathinfo['dirname']); + + $versionedFile = $pathinfo['basename']; foreach ($files as $file) { if ($file['type'] === 'file') { $pos = strrpos($file['path'], '.v'); - $length = $pos - strlen('files_versions/'.dirname($filename)); $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v')); if ($currentFile === $versionedFile) { $version = substr($file['path'], $pos + 2); @@ -264,11 +266,10 @@ class Storage { } } - // sort with oldest version first - ksort($versions); + // sort with newest version first + krsort($versions); - // return newest versions first - return array_reverse($versions); + return $versions; } /** @@ -367,8 +368,6 @@ class Storage { ksort($versions); - $i = 0; - $result = array(); foreach ($versions as $key => $value) { From f4e86045dee9578e80cd323d7ea56823388dd4ec Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 20:09:38 +0200 Subject: [PATCH 079/139] make files versions root a class constant --- apps/files_versions/lib/versions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 48c25831eb..7724221665 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -19,6 +19,7 @@ class Storage { const DEFAULTENABLED=true; const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota + const VERSIONS_ROOT = 'files_versions/'; private static $max_versions_per_interval = array( //first 10sec, one version every 2sec @@ -241,7 +242,7 @@ class Storage { public static function getVersions($uid, $filename) { $versions = array(); // fetch for old versions - $view = new \OC\Files\View('/' . $uid . '/files_versions/'); + $view = new \OC\Files\View('/' . $uid . '/' . self::VERSIONS_ROOT); $pathinfo = pathinfo($filename); @@ -345,8 +346,7 @@ class Storage { */ private static function getAllVersions($uid) { $view = new \OC\Files\View('/' . $uid . '/'); - $versionsPath = 'files_versions/'; - $dirs = array($versionsPath); + $dirs = array(self::VERSIONS_ROOT); while (!empty($dirs)) { $dir = array_pop($dirs); From 01d3536a76a053aaae398fbc10ee6a1e61dc0898 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Thu, 10 Oct 2013 23:10:06 +0200 Subject: [PATCH 080/139] fix checkbox <-> label binding clicking the label will trigger the checkbox --- settings/templates/admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 6450cd62d9..c4782606e2 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -179,7 +179,7 @@ if (!$_['internetconnectionworking']) {
    - Date: Fri, 11 Oct 2013 00:15:32 +0200 Subject: [PATCH 081/139] Fixed delete icon alignment in IE8 Removed old inline CSS that forced every td to have position:static in the files app. (#5056) --- apps/files/templates/index.php | 2 +- apps/files_trashbin/templates/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index ebdca097e7..1c07d14ea8 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,4 @@ - +
    diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 9b01a2589a..17045313d6 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,4 @@ - +
    From 44a5b0bad0e0dbcb0c11de663897ace69b4fd776 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 10 Oct 2013 22:30:58 -0400 Subject: [PATCH 082/139] [tx-robot] updated from transifex --- apps/files/l10n/en_GB.php | 2 + apps/files/l10n/es.php | 2 + apps/files/l10n/et_EE.php | 3 ++ apps/files/l10n/fr.php | 2 + apps/files/l10n/pt_PT.php | 3 ++ apps/files_encryption/l10n/en_GB.php | 10 ++-- apps/files_encryption/l10n/es.php | 1 + apps/files_encryption/l10n/et_EE.php | 4 ++ apps/files_encryption/l10n/fr.php | 4 ++ apps/files_encryption/l10n/pl.php | 4 ++ apps/files_encryption/l10n/pt_PT.php | 1 + apps/files_external/l10n/ar.php | 2 + apps/files_sharing/l10n/ar.php | 1 - apps/files_sharing/l10n/bg_BG.php | 1 - apps/files_sharing/l10n/bn_BD.php | 1 - apps/files_sharing/l10n/ca.php | 1 - apps/files_sharing/l10n/cs_CZ.php | 1 - apps/files_sharing/l10n/cy_GB.php | 1 - apps/files_sharing/l10n/da.php | 1 - apps/files_sharing/l10n/de.php | 1 - apps/files_sharing/l10n/de_CH.php | 1 - apps/files_sharing/l10n/de_DE.php | 1 - apps/files_sharing/l10n/el.php | 1 - apps/files_sharing/l10n/en@pirate.php | 1 - apps/files_sharing/l10n/en_GB.php | 1 - apps/files_sharing/l10n/eo.php | 1 - apps/files_sharing/l10n/es.php | 1 - apps/files_sharing/l10n/es_AR.php | 1 - apps/files_sharing/l10n/et_EE.php | 1 - apps/files_sharing/l10n/eu.php | 1 - apps/files_sharing/l10n/fa.php | 1 - apps/files_sharing/l10n/fi_FI.php | 1 - apps/files_sharing/l10n/fr.php | 1 - apps/files_sharing/l10n/gl.php | 1 - apps/files_sharing/l10n/he.php | 1 - apps/files_sharing/l10n/hr.php | 1 - apps/files_sharing/l10n/hu_HU.php | 1 - apps/files_sharing/l10n/hy.php | 1 - apps/files_sharing/l10n/ia.php | 1 - apps/files_sharing/l10n/id.php | 1 - apps/files_sharing/l10n/is.php | 1 - apps/files_sharing/l10n/it.php | 1 - apps/files_sharing/l10n/ja_JP.php | 1 - apps/files_sharing/l10n/ka_GE.php | 1 - apps/files_sharing/l10n/ko.php | 1 - apps/files_sharing/l10n/ku_IQ.php | 1 - apps/files_sharing/l10n/lb.php | 1 - apps/files_sharing/l10n/lt_LT.php | 1 - apps/files_sharing/l10n/lv.php | 1 - apps/files_sharing/l10n/mk.php | 1 - apps/files_sharing/l10n/ms_MY.php | 1 - apps/files_sharing/l10n/my_MM.php | 1 - apps/files_sharing/l10n/nb_NO.php | 1 - apps/files_sharing/l10n/nl.php | 1 - apps/files_sharing/l10n/nn_NO.php | 1 - apps/files_sharing/l10n/oc.php | 1 - apps/files_sharing/l10n/pl.php | 1 - apps/files_sharing/l10n/pt_BR.php | 1 - apps/files_sharing/l10n/pt_PT.php | 1 - apps/files_sharing/l10n/ro.php | 1 - apps/files_sharing/l10n/ru.php | 1 - apps/files_sharing/l10n/si_LK.php | 1 - apps/files_sharing/l10n/sk_SK.php | 1 - apps/files_sharing/l10n/sl.php | 1 - apps/files_sharing/l10n/sq.php | 1 - apps/files_sharing/l10n/sr.php | 1 - apps/files_sharing/l10n/sr@latin.php | 1 - apps/files_sharing/l10n/sv.php | 1 - apps/files_sharing/l10n/ta_LK.php | 1 - apps/files_sharing/l10n/th_TH.php | 1 - apps/files_sharing/l10n/tr.php | 1 - apps/files_sharing/l10n/ug.php | 1 - apps/files_sharing/l10n/uk.php | 1 - apps/files_sharing/l10n/vi.php | 1 - apps/files_sharing/l10n/zh_CN.php | 1 - apps/files_sharing/l10n/zh_TW.php | 1 - apps/files_trashbin/l10n/ar.php | 9 +--- apps/files_trashbin/l10n/bg_BG.php | 9 +--- apps/files_trashbin/l10n/bn_BD.php | 2 - apps/files_trashbin/l10n/bs.php | 4 +- apps/files_trashbin/l10n/ca.php | 9 +--- apps/files_trashbin/l10n/cs_CZ.php | 9 +--- apps/files_trashbin/l10n/cy_GB.php | 9 +--- apps/files_trashbin/l10n/da.php | 9 +--- apps/files_trashbin/l10n/de.php | 9 +--- apps/files_trashbin/l10n/de_CH.php | 9 +--- apps/files_trashbin/l10n/de_DE.php | 9 +--- apps/files_trashbin/l10n/el.php | 9 +--- apps/files_trashbin/l10n/en_GB.php | 9 +--- apps/files_trashbin/l10n/eo.php | 3 -- apps/files_trashbin/l10n/es.php | 9 +--- apps/files_trashbin/l10n/es_AR.php | 9 +--- apps/files_trashbin/l10n/et_EE.php | 9 +--- apps/files_trashbin/l10n/eu.php | 9 +--- apps/files_trashbin/l10n/fa.php | 9 +--- apps/files_trashbin/l10n/fi_FI.php | 9 +--- apps/files_trashbin/l10n/fr.php | 9 +--- apps/files_trashbin/l10n/gl.php | 9 +--- apps/files_trashbin/l10n/he.php | 9 +--- apps/files_trashbin/l10n/hi.php | 4 +- apps/files_trashbin/l10n/hr.php | 2 - apps/files_trashbin/l10n/hu_HU.php | 9 +--- apps/files_trashbin/l10n/hy.php | 2 - apps/files_trashbin/l10n/ia.php | 2 - apps/files_trashbin/l10n/id.php | 9 +--- apps/files_trashbin/l10n/is.php | 2 - apps/files_trashbin/l10n/it.php | 9 +--- apps/files_trashbin/l10n/ja_JP.php | 9 +--- apps/files_trashbin/l10n/ka_GE.php | 9 +--- apps/files_trashbin/l10n/ko.php | 9 +--- apps/files_trashbin/l10n/ku_IQ.php | 4 +- apps/files_trashbin/l10n/lb.php | 2 - apps/files_trashbin/l10n/lt_LT.php | 9 +--- apps/files_trashbin/l10n/lv.php | 9 +--- apps/files_trashbin/l10n/mk.php | 2 - apps/files_trashbin/l10n/ms_MY.php | 2 - apps/files_trashbin/l10n/nb_NO.php | 9 +--- apps/files_trashbin/l10n/nl.php | 9 +--- apps/files_trashbin/l10n/nn_NO.php | 9 +--- apps/files_trashbin/l10n/oc.php | 2 - apps/files_trashbin/l10n/pa.php | 2 - apps/files_trashbin/l10n/pl.php | 9 +--- apps/files_trashbin/l10n/pt_BR.php | 9 +--- apps/files_trashbin/l10n/pt_PT.php | 9 +--- apps/files_trashbin/l10n/ro.php | 3 -- apps/files_trashbin/l10n/ru.php | 9 +--- apps/files_trashbin/l10n/si_LK.php | 2 - apps/files_trashbin/l10n/sk_SK.php | 9 +--- apps/files_trashbin/l10n/sl.php | 9 +--- apps/files_trashbin/l10n/sq.php | 9 +--- apps/files_trashbin/l10n/sr.php | 8 +--- apps/files_trashbin/l10n/sr@latin.php | 2 - apps/files_trashbin/l10n/sv.php | 9 +--- apps/files_trashbin/l10n/ta_LK.php | 2 - apps/files_trashbin/l10n/te.php | 3 -- apps/files_trashbin/l10n/th_TH.php | 7 +-- apps/files_trashbin/l10n/tr.php | 9 +--- apps/files_trashbin/l10n/ug.php | 5 +- apps/files_trashbin/l10n/uk.php | 9 +--- apps/files_trashbin/l10n/ur_PK.php | 4 +- apps/files_trashbin/l10n/vi.php | 9 +--- apps/files_trashbin/l10n/zh_CN.php | 9 +--- apps/files_trashbin/l10n/zh_HK.php | 2 - apps/files_trashbin/l10n/zh_TW.php | 9 +--- apps/user_ldap/l10n/ca.php | 1 - apps/user_ldap/l10n/cs_CZ.php | 1 - apps/user_ldap/l10n/de.php | 1 - apps/user_ldap/l10n/de_CH.php | 1 - apps/user_ldap/l10n/de_DE.php | 1 - apps/user_ldap/l10n/en_GB.php | 1 - apps/user_ldap/l10n/es.php | 1 - apps/user_ldap/l10n/es_AR.php | 1 - apps/user_ldap/l10n/et_EE.php | 1 - apps/user_ldap/l10n/fa.php | 1 - apps/user_ldap/l10n/fr.php | 1 - apps/user_ldap/l10n/gl.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 - apps/user_ldap/l10n/it.php | 1 - apps/user_ldap/l10n/ja_JP.php | 1 - apps/user_ldap/l10n/lt_LT.php | 1 - apps/user_ldap/l10n/nl.php | 1 - apps/user_ldap/l10n/pl.php | 1 - apps/user_ldap/l10n/pt_BR.php | 1 - apps/user_ldap/l10n/pt_PT.php | 1 - apps/user_ldap/l10n/ru.php | 1 - apps/user_ldap/l10n/sk_SK.php | 1 - apps/user_ldap/l10n/sl.php | 1 - apps/user_ldap/l10n/sv.php | 1 - apps/user_ldap/l10n/zh_CN.php | 1 - core/l10n/en_GB.php | 10 ++++ core/l10n/es.php | 10 ++++ core/l10n/et_EE.php | 4 ++ core/l10n/fr.php | 10 ++++ core/l10n/pl.php | 9 ++++ core/l10n/tr.php | 2 + l10n/ach/files_sharing.po | 24 +++++----- l10n/ach/files_trashbin.po | 52 ++++++--------------- l10n/ach/user_ldap.po | 26 ++++++----- l10n/ady/files_sharing.po | 24 +++++----- l10n/ady/files_trashbin.po | 50 ++++++-------------- l10n/ady/user_ldap.po | 20 ++++---- l10n/af_ZA/files_sharing.po | 26 +++++------ l10n/af_ZA/files_trashbin.po | 52 ++++++--------------- l10n/af_ZA/user_ldap.po | 20 ++++---- l10n/ar/files_external.po | 11 +++-- l10n/ar/files_sharing.po | 26 +++++------ l10n/ar/files_trashbin.po | 58 ++++++----------------- l10n/ar/user_ldap.po | 20 ++++---- l10n/be/files_sharing.po | 24 +++++----- l10n/be/files_trashbin.po | 56 ++++++----------------- l10n/be/user_ldap.po | 26 ++++++----- l10n/bg_BG/files_sharing.po | 26 +++++------ l10n/bg_BG/files_trashbin.po | 50 ++++++-------------- l10n/bg_BG/user_ldap.po | 20 ++++---- l10n/bn_BD/files_sharing.po | 26 +++++------ l10n/bn_BD/files_trashbin.po | 50 ++++++-------------- l10n/bn_BD/user_ldap.po | 20 ++++---- l10n/bs/files_sharing.po | 24 +++++----- l10n/bs/files_trashbin.po | 54 ++++++---------------- l10n/bs/user_ldap.po | 26 ++++++----- l10n/ca/files_sharing.po | 28 ++++++------ l10n/ca/files_trashbin.po | 50 ++++++-------------- l10n/ca/user_ldap.po | 24 ++++++---- l10n/cs_CZ/files_sharing.po | 28 ++++++------ l10n/cs_CZ/files_trashbin.po | 54 ++++++---------------- l10n/cs_CZ/user_ldap.po | 24 ++++++---- l10n/cy_GB/files_sharing.po | 26 +++++------ l10n/cy_GB/files_trashbin.po | 54 ++++++---------------- l10n/cy_GB/user_ldap.po | 20 ++++---- l10n/da/files_sharing.po | 28 ++++++------ l10n/da/files_trashbin.po | 52 ++++++--------------- l10n/da/user_ldap.po | 22 +++++---- l10n/de/files_sharing.po | 30 ++++++------ l10n/de/files_trashbin.po | 52 ++++++--------------- l10n/de/user_ldap.po | 26 ++++++----- l10n/de_AT/files_sharing.po | 24 +++++----- l10n/de_AT/files_trashbin.po | 52 ++++++--------------- l10n/de_AT/user_ldap.po | 26 ++++++----- l10n/de_CH/files_sharing.po | 28 ++++++------ l10n/de_CH/files_trashbin.po | 52 ++++++--------------- l10n/de_CH/user_ldap.po | 24 ++++++---- l10n/de_DE/files_sharing.po | 30 ++++++------ l10n/de_DE/files_trashbin.po | 54 ++++++---------------- l10n/de_DE/user_ldap.po | 26 ++++++----- l10n/el/files_sharing.po | 28 ++++++------ l10n/el/files_trashbin.po | 50 ++++++-------------- l10n/el/user_ldap.po | 20 ++++---- l10n/en@pirate/files_sharing.po | 26 +++++------ l10n/en@pirate/files_trashbin.po | 52 ++++++--------------- l10n/en@pirate/user_ldap.po | 26 ++++++----- l10n/en_GB/core.po | 32 ++++++------- l10n/en_GB/files.po | 64 +++++++++++++------------- l10n/en_GB/files_encryption.po | 20 ++++---- l10n/en_GB/files_sharing.po | 28 ++++++------ l10n/en_GB/files_trashbin.po | 52 ++++++--------------- l10n/en_GB/settings.po | 24 +++++----- l10n/en_GB/user_ldap.po | 24 ++++++---- l10n/eo/files_sharing.po | 26 +++++------ l10n/eo/files_trashbin.po | 50 ++++++-------------- l10n/eo/user_ldap.po | 22 +++++---- l10n/es/core.po | 32 ++++++------- l10n/es/files.po | 65 +++++++++++++------------- l10n/es/files_encryption.po | 9 ++-- l10n/es/files_sharing.po | 28 ++++++------ l10n/es/files_trashbin.po | 52 ++++++--------------- l10n/es/settings.po | 25 +++++----- l10n/es/user_ldap.po | 24 ++++++---- l10n/es_AR/files_sharing.po | 28 ++++++------ l10n/es_AR/files_trashbin.po | 52 ++++++--------------- l10n/es_AR/user_ldap.po | 24 ++++++---- l10n/es_MX/files_sharing.po | 24 +++++----- l10n/es_MX/files_trashbin.po | 52 ++++++--------------- l10n/es_MX/user_ldap.po | 26 ++++++----- l10n/et_EE/core.po | 20 ++++---- l10n/et_EE/files.po | 66 +++++++++++++-------------- l10n/et_EE/files_encryption.po | 14 +++--- l10n/et_EE/files_sharing.po | 28 ++++++------ l10n/et_EE/files_trashbin.po | 52 ++++++--------------- l10n/et_EE/user_ldap.po | 24 ++++++---- l10n/eu/files_sharing.po | 28 ++++++------ l10n/eu/files_trashbin.po | 52 ++++++--------------- l10n/eu/user_ldap.po | 20 ++++---- l10n/fa/files_sharing.po | 26 +++++------ l10n/fa/files_trashbin.po | 48 ++++++------------- l10n/fa/user_ldap.po | 22 +++++---- l10n/fi_FI/files_sharing.po | 28 ++++++------ l10n/fi_FI/files_trashbin.po | 52 ++++++--------------- l10n/fi_FI/user_ldap.po | 20 ++++---- l10n/fr/core.po | 33 +++++++------- l10n/fr/files.po | 64 +++++++++++++------------- l10n/fr/files_encryption.po | 16 ++++--- l10n/fr/files_sharing.po | 28 ++++++------ l10n/fr/files_trashbin.po | 52 ++++++--------------- l10n/fr/settings.po | 24 +++++----- l10n/fr/user_ldap.po | 24 ++++++---- l10n/gl/files_sharing.po | 28 ++++++------ l10n/gl/files_trashbin.po | 52 ++++++--------------- l10n/gl/user_ldap.po | 24 ++++++---- l10n/he/files_sharing.po | 26 +++++------ l10n/he/files_trashbin.po | 50 ++++++-------------- l10n/he/user_ldap.po | 20 ++++---- l10n/hi/files_sharing.po | 26 +++++------ l10n/hi/files_trashbin.po | 50 ++++++-------------- l10n/hi/user_ldap.po | 20 ++++---- l10n/hr/files_sharing.po | 26 +++++------ l10n/hr/files_trashbin.po | 52 ++++++--------------- l10n/hr/user_ldap.po | 20 ++++---- l10n/hu_HU/files_sharing.po | 28 ++++++------ l10n/hu_HU/files_trashbin.po | 50 ++++++-------------- l10n/hu_HU/user_ldap.po | 24 ++++++---- l10n/hy/files_sharing.po | 26 +++++------ l10n/hy/files_trashbin.po | 50 ++++++-------------- l10n/hy/user_ldap.po | 26 ++++++----- l10n/ia/files_sharing.po | 26 +++++------ l10n/ia/files_trashbin.po | 50 ++++++-------------- l10n/ia/user_ldap.po | 20 ++++---- l10n/id/files_sharing.po | 26 +++++------ l10n/id/files_trashbin.po | 48 ++++++------------- l10n/id/user_ldap.po | 20 ++++---- l10n/is/files_sharing.po | 26 +++++------ l10n/is/files_trashbin.po | 50 ++++++-------------- l10n/is/user_ldap.po | 20 ++++---- l10n/it/files_sharing.po | 28 ++++++------ l10n/it/files_trashbin.po | 52 ++++++--------------- l10n/it/user_ldap.po | 24 ++++++---- l10n/ja_JP/files_sharing.po | 28 ++++++------ l10n/ja_JP/files_trashbin.po | 50 ++++++-------------- l10n/ja_JP/user_ldap.po | 24 ++++++---- l10n/ka/files_sharing.po | 26 +++++------ l10n/ka/files_trashbin.po | 50 ++++++-------------- l10n/ka/user_ldap.po | 20 ++++---- l10n/ka_GE/files_sharing.po | 26 +++++------ l10n/ka_GE/files_trashbin.po | 48 ++++++------------- l10n/ka_GE/user_ldap.po | 20 ++++---- l10n/km/files_sharing.po | 24 +++++----- l10n/km/files_trashbin.po | 50 ++++++-------------- l10n/km/user_ldap.po | 26 ++++++----- l10n/kn/files_sharing.po | 24 +++++----- l10n/kn/files_trashbin.po | 50 ++++++-------------- l10n/kn/user_ldap.po | 26 ++++++----- l10n/ko/files_sharing.po | 28 ++++++------ l10n/ko/files_trashbin.po | 50 ++++++-------------- l10n/ko/user_ldap.po | 20 ++++---- l10n/ku_IQ/files_sharing.po | 26 +++++------ l10n/ku_IQ/files_trashbin.po | 50 ++++++-------------- l10n/ku_IQ/user_ldap.po | 20 ++++---- l10n/lb/files_sharing.po | 26 +++++------ l10n/lb/files_trashbin.po | 50 ++++++-------------- l10n/lb/user_ldap.po | 20 ++++---- l10n/lt_LT/files_sharing.po | 28 ++++++------ l10n/lt_LT/files_trashbin.po | 54 ++++++---------------- l10n/lt_LT/user_ldap.po | 24 ++++++---- l10n/lv/files_sharing.po | 26 +++++------ l10n/lv/files_trashbin.po | 54 ++++++---------------- l10n/lv/user_ldap.po | 20 ++++---- l10n/mk/files_sharing.po | 26 +++++------ l10n/mk/files_trashbin.po | 50 ++++++-------------- l10n/mk/user_ldap.po | 20 ++++---- l10n/ml_IN/files_sharing.po | 24 +++++----- l10n/ml_IN/files_trashbin.po | 52 ++++++--------------- l10n/ml_IN/user_ldap.po | 26 ++++++----- l10n/ms_MY/files_sharing.po | 26 +++++------ l10n/ms_MY/files_trashbin.po | 48 ++++++------------- l10n/ms_MY/user_ldap.po | 20 ++++---- l10n/my_MM/files_sharing.po | 26 +++++------ l10n/my_MM/files_trashbin.po | 50 ++++++-------------- l10n/my_MM/user_ldap.po | 20 ++++---- l10n/nb_NO/files_sharing.po | 26 +++++------ l10n/nb_NO/files_trashbin.po | 50 ++++++-------------- l10n/nb_NO/user_ldap.po | 20 ++++---- l10n/ne/files_sharing.po | 24 +++++----- l10n/ne/files_trashbin.po | 52 ++++++--------------- l10n/ne/user_ldap.po | 26 ++++++----- l10n/nl/files_sharing.po | 28 ++++++------ l10n/nl/files_trashbin.po | 52 ++++++--------------- l10n/nl/user_ldap.po | 24 ++++++---- l10n/nn_NO/files_sharing.po | 28 ++++++------ l10n/nn_NO/files_trashbin.po | 52 ++++++--------------- l10n/nn_NO/user_ldap.po | 20 ++++---- l10n/nqo/files_sharing.po | 24 +++++----- l10n/nqo/files_trashbin.po | 50 ++++++-------------- l10n/nqo/user_ldap.po | 26 ++++++----- l10n/oc/files_sharing.po | 26 +++++------ l10n/oc/files_trashbin.po | 50 ++++++-------------- l10n/oc/user_ldap.po | 20 ++++---- l10n/pa/files_sharing.po | 26 +++++------ l10n/pa/files_trashbin.po | 50 ++++++-------------- l10n/pa/user_ldap.po | 20 ++++---- l10n/pl/core.po | 30 ++++++------ l10n/pl/files_encryption.po | 14 +++--- l10n/pl/files_sharing.po | 28 ++++++------ l10n/pl/files_trashbin.po | 52 ++++++--------------- l10n/pl/settings.po | 24 +++++----- l10n/pl/user_ldap.po | 22 +++++---- l10n/pt_BR/files_sharing.po | 28 ++++++------ l10n/pt_BR/files_trashbin.po | 52 ++++++--------------- l10n/pt_BR/user_ldap.po | 24 ++++++---- l10n/pt_PT/files.po | 66 +++++++++++++-------------- l10n/pt_PT/files_encryption.po | 9 ++-- l10n/pt_PT/files_sharing.po | 28 ++++++------ l10n/pt_PT/files_trashbin.po | 52 ++++++--------------- l10n/pt_PT/lib.po | 36 +++++++-------- l10n/pt_PT/settings.po | 47 +++++++++---------- l10n/pt_PT/user_ldap.po | 22 +++++---- l10n/ro/files_sharing.po | 26 +++++------ l10n/ro/files_trashbin.po | 52 ++++++--------------- l10n/ro/user_ldap.po | 20 ++++---- l10n/ru/files_sharing.po | 28 ++++++------ l10n/ru/files_trashbin.po | 52 ++++++--------------- l10n/ru/user_ldap.po | 24 ++++++---- l10n/si_LK/files_sharing.po | 26 +++++------ l10n/si_LK/files_trashbin.po | 50 ++++++-------------- l10n/si_LK/user_ldap.po | 20 ++++---- l10n/sk/files_sharing.po | 24 +++++----- l10n/sk/files_trashbin.po | 54 ++++++---------------- l10n/sk/user_ldap.po | 26 ++++++----- l10n/sk_SK/files_sharing.po | 28 ++++++------ l10n/sk_SK/files_trashbin.po | 54 ++++++---------------- l10n/sk_SK/user_ldap.po | 24 ++++++---- l10n/sl/files_sharing.po | 26 +++++------ l10n/sl/files_trashbin.po | 54 ++++++---------------- l10n/sl/user_ldap.po | 22 +++++---- l10n/sq/files_sharing.po | 28 ++++++------ l10n/sq/files_trashbin.po | 52 ++++++--------------- l10n/sq/user_ldap.po | 20 ++++---- l10n/sr/files_sharing.po | 26 +++++------ l10n/sr/files_trashbin.po | 52 ++++++--------------- l10n/sr/user_ldap.po | 20 ++++---- l10n/sr@latin/files_sharing.po | 26 +++++------ l10n/sr@latin/files_trashbin.po | 52 ++++++--------------- l10n/sr@latin/user_ldap.po | 20 ++++---- l10n/sv/files_sharing.po | 28 ++++++------ l10n/sv/files_trashbin.po | 52 ++++++--------------- l10n/sv/user_ldap.po | 24 ++++++---- l10n/sw_KE/files_sharing.po | 24 +++++----- l10n/sw_KE/files_trashbin.po | 52 ++++++--------------- l10n/sw_KE/user_ldap.po | 26 ++++++----- l10n/ta_LK/files_sharing.po | 26 +++++------ l10n/ta_LK/files_trashbin.po | 50 ++++++-------------- l10n/ta_LK/user_ldap.po | 20 ++++---- l10n/te/files_sharing.po | 26 +++++------ l10n/te/files_trashbin.po | 50 ++++++-------------- l10n/te/user_ldap.po | 20 ++++---- l10n/templates/core.pot | 8 ++-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 22 ++++----- l10n/templates/files_trashbin.pot | 49 +++++--------------- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 18 ++++---- l10n/templates/private.pot | 18 ++++---- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 18 +++++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files_sharing.po | 26 +++++------ l10n/th_TH/files_trashbin.po | 48 ++++++------------- l10n/th_TH/user_ldap.po | 20 ++++---- l10n/tr/core.po | 14 +++--- l10n/tr/files_sharing.po | 26 +++++------ l10n/tr/files_trashbin.po | 52 ++++++--------------- l10n/tr/lib.po | 29 ++++++------ l10n/tr/user_ldap.po | 20 ++++---- l10n/ug/files_sharing.po | 28 ++++++------ l10n/ug/files_trashbin.po | 50 ++++++-------------- l10n/ug/user_ldap.po | 22 +++++---- l10n/uk/files_sharing.po | 26 +++++------ l10n/uk/files_trashbin.po | 52 ++++++--------------- l10n/uk/user_ldap.po | 20 ++++---- l10n/ur_PK/files_sharing.po | 26 +++++------ l10n/ur_PK/files_trashbin.po | 50 ++++++-------------- l10n/ur_PK/user_ldap.po | 20 ++++---- l10n/vi/files_sharing.po | 26 +++++------ l10n/vi/files_trashbin.po | 48 ++++++------------- l10n/vi/user_ldap.po | 20 ++++---- l10n/zh_CN/files_sharing.po | 28 ++++++------ l10n/zh_CN/files_trashbin.po | 50 ++++++-------------- l10n/zh_CN/user_ldap.po | 22 +++++---- l10n/zh_HK/files_sharing.po | 26 +++++------ l10n/zh_HK/files_trashbin.po | 48 ++++++------------- l10n/zh_HK/user_ldap.po | 20 ++++---- l10n/zh_TW/files_sharing.po | 28 ++++++------ l10n/zh_TW/files_trashbin.po | 50 ++++++-------------- l10n/zh_TW/user_ldap.po | 22 +++++---- lib/l10n/pt_PT.php | 7 +++ lib/l10n/tr.php | 3 ++ settings/l10n/en_GB.php | 2 + settings/l10n/es.php | 2 + settings/l10n/fr.php | 2 + settings/l10n/pl.php | 2 + settings/l10n/pt_PT.php | 13 ++++++ 471 files changed, 4021 insertions(+), 5980 deletions(-) diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index c747555e40..96a4be20b5 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Error moving file" => "Error moving file", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index bfed4b2227..b7091fe544 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", "Error moving file" => "Error moviendo archivo", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index cb637d849b..d25b737037 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -17,6 +17,7 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti", "Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", "Could not get result from server." => "Serverist ei saadud tulemusi", @@ -43,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", "Error moving file" => "Viga faili eemaldamisel", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 03505a2a26..ca1ed09ef3 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez 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 chiffrés.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", "Error moving file" => "Erreur lors du déplacement du fichier", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index f6d61fc987..342cab2bf4 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -13,10 +13,12 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Está a faltar a pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Not enough storage available" => "Não há espaço suficiente em disco", +"Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Not enough space available" => "Espaço em disco insuficiente!", "Upload cancelled." => "Envio cancelado.", +"Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty." => "O URL não pode estar vazio.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud", @@ -42,6 +44,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", +"Error moving file" => "Erro ao mover o ficheiro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index d2bfdfa9ea..53eef77eb5 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -8,22 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.", "Private key password successfully updated." => "Private key password updated successfully.", "Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.", "Missing requirements." => "Missing requirements.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", "Saving..." => "Saving...", +"Go directly to your " => "Go directly to your ", "personal settings" => "personal settings", "Encryption" => "Encryption", "Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", "Recovery key password" => "Recovery key password", +"Repeat Recovery key password" => "Repeat recovery key password", "Enabled" => "Enabled", "Disabled" => "Disabled", "Change recovery key password:" => "Change recovery key password:", -"Old Recovery key password" => "Old Recovery key password", -"New Recovery key password" => "New Recovery key password", +"Old Recovery key password" => "Old recovery key password", +"New Recovery key password" => "New recovery key password", +"Repeat New Recovery key password" => "Repeat new recovery key password", "Change Password" => "Change Password", -"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:", +"Your private key password no longer match your log-in password:" => "Your private key password no longer matches your login password:", "Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.", " If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.", "Old log-in password" => "Old login password", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 138d51b09b..2e3c7c5816 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "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.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 0c9234d3a5..c49e4e9e5a 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", "Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Missing requirements." => "Nõutavad on puudu.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", +"Go directly to your " => "Liigu otse oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", "Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", "Recovery key password" => "Taastevõtme parool", +"Repeat Recovery key password" => "Korda taastevõtme parooli", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", "Change recovery key password:" => "Muuda taastevõtme parooli:", "Old Recovery key password" => "Vana taastevõtme parool", "New Recovery key password" => "Uus taastevõtme parool", +"Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", "Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", "Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index b222aa10e4..afce2ccfd3 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "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.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", "Missing requirements." => "Système minimum requis non respecté.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Saving..." => "Enregistrement...", +"Go directly to your " => "Allez directement à 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", +"Repeat Recovery key password" => "Répétez le mot de passe de la clé 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", +"Repeat New Recovery key password" => "Répétez le nouveau mot de passe de la clé 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. ", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 4eb1ca00dd..b448aaef14 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "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.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", "Missing requirements." => "Brak wymagań.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", +"Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):", "Recovery key password" => "Hasło klucza odzyskiwania", +"Repeat Recovery key password" => "Powtórz hasło klucza odzyskiwania", "Enabled" => "Włączone", "Disabled" => "Wyłączone", "Change recovery key password:" => "Zmień hasło klucza odzyskiwania", "Old Recovery key password" => "Stare hasło klucza odzyskiwania", "New Recovery key password" => "Nowe hasło klucza odzyskiwania", +"Repeat New Recovery key password" => "Powtórz nowe hasło klucza odzyskiwania", "Change Password" => "Zmień hasło", "Your private key password no longer match your log-in password:" => "Hasło klucza prywatnego nie pasuje do hasła logowania:", "Set your old private key password to your current log-in password." => "Podaj swoje stare prywatne hasło aby ustawić nowe", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 53335ab729..788e102dd6 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", "Missing requirements." => "Faltam alguns requisitos.", +"Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 905d221e88..055c689582 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,7 @@ "اسم المجلد", +"All Users" => "كل المستخدمين", "Groups" => "مجموعات", "Users" => "المستخدمين", "Delete" => "إلغاء" diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index ff7b40d16b..2625af1cc0 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,7 +1,6 @@ "كلمة المرور", -"Submit" => "تطبيق", "%s shared the folder %s with you" => "%s شارك المجلد %s معك", "%s shared the file %s with you" => "%s شارك الملف %s معك", "Download" => "تحميل", diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 1094870fd0..f4b9e2dd5f 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,7 +1,6 @@ "Парола", -"Submit" => "Потвърждение", "%s shared the folder %s with you" => "%s сподели папката %s с Вас", "%s shared the file %s with you" => "%s сподели файла %s с Вас", "Download" => "Изтегляне", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 71b948e347..aaed904d9d 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,7 +1,6 @@ "কূটশব্দ", -"Submit" => "জমা দিন", "%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", "%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", "Download" => "ডাউনলোড", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index cbe8f86e25..e5e5910f8c 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", -"Submit" => "Envia", "Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", "Reasons might be:" => "Les raons podrien ser:", "the item was removed" => "l'element ha estat eliminat", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 7258dedcf6..7888ec2587 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", -"Submit" => "Odeslat", "Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", "Reasons might be:" => "Možné důvody:", "the item was removed" => "položka byla odebrána", diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 66fbc4e1d1..d2ae28141d 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,7 +1,6 @@ "Cyfrinair", -"Submit" => "Cyflwyno", "%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", "%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", "Download" => "Llwytho i lawr", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 0ca0f38161..aef3ad9881 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", "Reasons might be:" => "Årsagen kan være:", "the item was removed" => "Filen blev fjernet", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index afed17d883..d65079bec4 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Absenden", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Die Elemente wurden entfernt", diff --git a/apps/files_sharing/l10n/de_CH.php b/apps/files_sharing/l10n/de_CH.php index 1bd24f9d9c..f63714b902 100644 --- a/apps/files_sharing/l10n/de_CH.php +++ b/apps/files_sharing/l10n/de_CH.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 1bd24f9d9c..f63714b902 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 93486a831b..4584e261b0 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", -"Submit" => "Καταχώρηση", "Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", "Reasons might be:" => "Οι λόγοι μπορεί να είναι:", "the item was removed" => "το αντικείμενο απομακρύνθηκε", diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index a60f1fe72f..cd3c00d29d 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,7 +1,6 @@ "Secret Code", -"Submit" => "Submit", "%s shared the folder %s with you" => "%s shared the folder %s with you", "%s shared the file %s with you" => "%s shared the file %s with you", "Download" => "Download", diff --git a/apps/files_sharing/l10n/en_GB.php b/apps/files_sharing/l10n/en_GB.php index 337c108651..958f38557d 100644 --- a/apps/files_sharing/l10n/en_GB.php +++ b/apps/files_sharing/l10n/en_GB.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "The password is wrong. Try again.", "Password" => "Password", -"Submit" => "Submit", "Sorry, this link doesn’t seem to work anymore." => "Sorry, this link doesn’t seem to work anymore.", "Reasons might be:" => "Reasons might be:", "the item was removed" => "the item was removed", diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index 70e703bda9..294dc0314c 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,7 +1,6 @@ "Pasvorto", -"Submit" => "Sendi", "%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", "%s shared the file %s with you" => "%s kunhavigis la dosieron %s kun vi", "Download" => "Elŝuti", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index e163da766f..45e4563b69 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Vaya, este enlace parece que no volverá a funcionar.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue eliminado", diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 7c9dcb94ac..989a91a450 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Perdón, este enlace parece no funcionar más.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue borrado", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index fe230902ff..b70cbb3e7e 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", -"Submit" => "Saada", "Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", "Reasons might be:" => "Põhjused võivad olla:", "the item was removed" => "üksus on eemaldatud", diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 7b6a4b08b3..91be195368 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", -"Submit" => "Bidali", "Sorry, this link doesn’t seem to work anymore." => "Barkatu, lotura ez dirudi eskuragarria dagoenik.", "Reasons might be:" => "Arrazoiak hurrengoak litezke:", "the item was removed" => "fitxategia ezbatua izan da", diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 48888f798a..664338723c 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", -"Submit" => "ثبت", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", "%s shared the file %s with you" => "%sفایل %s را با شما به اشتراک گذاشت", "Download" => "دانلود", diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 42905be57a..75042ad375 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", -"Submit" => "Lähetä", "Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", "Reasons might be:" => "Mahdollisia syitä:", "the item was removed" => "kohde poistettiin", diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index c97a1db97e..d5227ef3c4 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", -"Submit" => "Envoyer", "Sorry, this link doesn’t seem to work anymore." => "Désolé, mais le lien semble ne plus fonctionner.", "Reasons might be:" => "Les raisons peuvent être :", "the item was removed" => "l'item a été supprimé", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 66b1f0e5ff..a4e91cf3b5 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", "Reasons might be:" => "As razóns poderían ser:", "the item was removed" => "o elemento foi retirado", diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index f8b304898c..217298fedd 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,7 +1,6 @@ "סיסמא", -"Submit" => "שליחה", "%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", "%s shared the file %s with you" => "%s שיתף עמך את הקובץ %s", "Download" => "הורדה", diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index 87eb956706..4a82dd7f71 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzimanje", "Upload" => "Učitaj", "Cancel upload" => "Prekini upload" diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 7ef69b1e0b..423af30aae 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", -"Submit" => "Elküld", "Sorry, this link doesn’t seem to work anymore." => "Sajnos úgy tűnik, ez a link már nem működik.", "Reasons might be:" => "Ennek az oka a következő lehet:", "the item was removed" => "az állományt időközben eltávolították", diff --git a/apps/files_sharing/l10n/hy.php b/apps/files_sharing/l10n/hy.php index d4cb416f45..da200623e0 100644 --- a/apps/files_sharing/l10n/hy.php +++ b/apps/files_sharing/l10n/hy.php @@ -1,6 +1,5 @@ "Հաստատել", "Download" => "Բեռնել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index 5112501073..f9d6c33a0b 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,7 +1,6 @@ "Contrasigno", -"Submit" => "Submitter", "Download" => "Discargar", "Upload" => "Incargar" ); diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index a4d73bd2b7..e91ef94bf3 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,7 +1,6 @@ "Sandi", -"Submit" => "Kirim", "%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", "%s shared the file %s with you" => "%s membagikan file %s dengan Anda", "Download" => "Unduh", diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 05241d3f9e..8ae8e48eff 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,7 +1,6 @@ "Lykilorð", -"Submit" => "Senda", "%s shared the folder %s with you" => "%s deildi möppunni %s með þér", "%s shared the file %s with you" => "%s deildi skránni %s með þér", "Download" => "Niðurhal", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index a611e0641c..b5d3713464 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", -"Submit" => "Invia", "Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", "Reasons might be:" => "I motivi potrebbero essere:", "the item was removed" => "l'elemento è stato rimosso", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 4f7d5b31c2..6a7500f147 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "パスワードが間違っています。再試行してください。", "Password" => "パスワード", -"Submit" => "送信", "Sorry, this link doesn’t seem to work anymore." => "申し訳ございません。このリンクはもう利用できません。", "Reasons might be:" => "理由は以下の通りと考えられます:", "the item was removed" => "アイテムが削除されました", diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index a5a80b3c5a..89a6800b3e 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,7 +1,6 @@ "პაროლი", -"Submit" => "გაგზავნა", "%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", "%s shared the file %s with you" => "%s–მა გაგიზიარათ ფაილი %s", "Download" => "ჩამოტვირთვა", diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index f7eab1ac55..90f59ed167 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "비밀번호가 틀립니다. 다시 입력해주세요.", "Password" => "암호", -"Submit" => "제출", "Sorry, this link doesn’t seem to work anymore." => "죄송합니다만 이 링크는 더이상 작동되지 않습니다.", "Reasons might be:" => "이유는 다음과 같을 수 있습니다:", "the item was removed" => "이 항목은 삭제되었습니다", diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 55576a19c3..6b4b7e4ba9 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,7 +1,6 @@ "وشەی تێپەربو", -"Submit" => "ناردن", "%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", "%s shared the file %s with you" => "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ", "Download" => "داگرتن", diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index d37a1d9d22..eeb6a3e2dc 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", -"Submit" => "Fortschécken", "%s shared the folder %s with you" => "%s huet den Dossier %s mad der gedeelt", "%s shared the file %s with you" => "%s deelt den Fichier %s mad dir", "Download" => "Download", diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 90ae6a39a0..fe4a82e064 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Netinka slaptažodis: Bandykite dar kartą.", "Password" => "Slaptažodis", -"Submit" => "Išsaugoti", "Sorry, this link doesn’t seem to work anymore." => "Atleiskite, panašu, kad nuoroda yra neveiksni.", "Reasons might be:" => "Galimos priežastys:", "the item was removed" => "elementas buvo pašalintas", diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index 0eb04fb966..a913ba1152 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,7 +1,6 @@ "Parole", -"Submit" => "Iesniegt", "%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", "%s shared the file %s with you" => "%s ar jums dalījās ar datni %s", "Download" => "Lejupielādēt", diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index c913b2beaf..c132f7aa26 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Прати", "%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", "%s shared the file %s with you" => "%s ја сподели датотеката %s со Вас", "Download" => "Преземи", diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 0a3d08bbc1..9725dd4d1b 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,7 +1,6 @@ "Kata laluan", -"Submit" => "Hantar", "Download" => "Muat turun", "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik" diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index f44010004c..ff92e898ed 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,7 +1,6 @@ "စကားဝှက်", -"Submit" => "ထည့်သွင်းမည်", "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index dd8a8edf31..0452b5275c 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", -"Submit" => "Send inn", "%s shared the folder %s with you" => "%s delte mappen %s med deg", "%s shared the file %s with you" => "%s delte filen %s med deg", "Download" => "Last ned", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 9c46a1ab4b..210acc9cdf 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", -"Submit" => "Verzenden", "Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.", "Reasons might be:" => "Redenen kunnen zijn:", "the item was removed" => "bestand was verwijderd", diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index 94272943e4..1f1e8001e7 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er gale. Prøv igjen.", "Password" => "Passord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Orsak, denne lenkja fungerer visst ikkje lenger.", "Reasons might be:" => "Moglege grunnar:", "the item was removed" => "fila/mappa er fjerna", diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 493ddb4dfd..299d98e58b 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,7 +1,6 @@ "Senhal", -"Submit" => "Sosmetre", "Download" => "Avalcarga", "Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar" diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 43c7e2e314..63d373917e 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", -"Submit" => "Wyślij", "Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", "Reasons might be:" => "Możliwe powody:", "the item was removed" => "element został usunięty", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index 9fc1cacf7c..5705587919 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", "Reasons might be:" => "As razões podem ser:", "the item was removed" => "o item foi removido", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 73dc2a3e1f..7fa1876aaa 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", "Reasons might be:" => "As razões poderão ser:", "the item was removed" => "O item foi removido", diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index d17152ff1b..54e20ed6bb 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", -"Submit" => "Trimite", "%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", "%s shared the file %s with you" => "%s a partajat fișierul %s cu tine", "Download" => "Descarcă", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index f42f1d9aeb..38581b045e 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", -"Submit" => "Отправить", "Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", "Reasons might be:" => "Причиной может быть:", "the item was removed" => "объект был удалён", diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index 6135f09213..e840138564 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,7 +1,6 @@ "මුර පදය", -"Submit" => "යොමු කරන්න", "%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", "%s shared the file %s with you" => "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය", "Download" => "බාන්න", diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 31ecb28b60..d8633c1daf 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Heslo je chybné. Skúste to znova.", "Password" => "Heslo", -"Submit" => "Odoslať", "Sorry, this link doesn’t seem to work anymore." => "To je nepríjemné, ale tento odkaz už nie je funkčný.", "Reasons might be:" => "Možné dôvody:", "the item was removed" => "položka bola presunutá", diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index cbd4f5fea2..58bbf87c19 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,7 +1,6 @@ "Geslo", -"Submit" => "Pošlji", "%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", "%s shared the file %s with you" => "Oseba %s je določila datoteko %s za souporabo", "Download" => "Prejmi", diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index d2077663e8..473049f75e 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodi është i gabuar. Provojeni përsëri.", "Password" => "Kodi", -"Submit" => "Parashtro", "Sorry, this link doesn’t seem to work anymore." => "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më.", "Reasons might be:" => "Arsyet mund të jenë:", "the item was removed" => "elementi është eliminuar", diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 3b97d15419..e484ad25eb 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Пошаљи", "Download" => "Преузми", "Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање" diff --git a/apps/files_sharing/l10n/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index 1a6be62576..08463e1510 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzmi", "Upload" => "Pošalji" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index b8a5f8629a..23bf17aba4 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", -"Submit" => "Skicka", "Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", "Reasons might be:" => "Orsaker kan vara:", "the item was removed" => "objektet togs bort", diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index b4eb0fb7fb..90a2fb417f 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,7 +1,6 @@ "கடவுச்சொல்", -"Submit" => "சமர்ப்பிக்குக", "%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", "%s shared the file %s with you" => "%s கோப்பானது %s உடன் பகிரப்பட்டது", "Download" => "பதிவிறக்குக", diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 060bd8bed9..e192e0a97c 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,7 +1,6 @@ "รหัสผ่าน", -"Submit" => "ส่ง", "%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", "%s shared the file %s with you" => "%s ได้แชร์ไฟล์ %s ให้กับคุณ", "Download" => "ดาวน์โหลด", diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index a5bcff82cf..9a2d36e523 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,7 +1,6 @@ "Parola", -"Submit" => "Gönder", "%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", "%s shared the file %s with you" => "%s sizinle paylaşılan %s klasör", "Download" => "İndir", diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 43ee9f77bc..6ffa02f734 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,7 +1,6 @@ "ئىم", -"Submit" => "تاپشۇر", "Download" => "چۈشۈر", "Upload" => "يۈكلە", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ" diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index b6a7784c69..dea1ee6850 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -1,7 +1,6 @@ "Пароль", -"Submit" => "Передати", "%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", "%s shared the file %s with you" => "%s опублікував файл %s для Вас", "Download" => "Завантажити", diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index 00e8e094c3..4566d3744d 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,7 +1,6 @@ "Mật khẩu", -"Submit" => "Xác nhận", "%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", "%s shared the file %s with you" => "%s đã chia sẻ tập tin %s với bạn", "Download" => "Tải về", diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index f541d6c155..956c161b48 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "用户名或密码错误!请重试", "Password" => "密码", -"Submit" => "提交", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此链接已失效", "Reasons might be:" => "可能原因是:", "the item was removed" => "此项已移除", diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index 5cc33fd383..bc415913e4 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "請檢查您的密碼並再試一次", "Password" => "密碼", -"Submit" => "送出", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此連結已經失效", "Reasons might be:" => "可能的原因:", "the item was removed" => "項目已經移除", diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 0af6972af5..9733e6b100 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", -"perform restore operation" => "إبدء عملية الإستعادة", "Error" => "خطأ", -"delete file permanently" => "حذف بشكل دائم", -"Delete permanently" => "حذف بشكل دائم", -"Name" => "اسم", -"Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array("","","","","","مجلدات %n"), -"_%n file_::_%n files_" => array("","","","",""," ملفات %n"), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", +"Name" => "اسم", "Restore" => "استعيد", +"Deleted" => "تم الحذف", "Delete" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 3c12e6906e..2f1521feaa 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", -"perform restore operation" => "извършване на действие по възстановяване", "Error" => "Грешка", -"delete file permanently" => "изтриване на файла завинаги", -"Delete permanently" => "Изтриване завинаги", -"Name" => "Име", -"Deleted" => "Изтрито", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", +"Name" => "Име", "Restore" => "Възтановяване", +"Deleted" => "Изтрито", "Delete" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index c3741dbd1d..d3a9f23b37 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bs.php b/apps/files_trashbin/l10n/bs.php index af7033bd18..08ef9b4fdb 100644 --- a/apps/files_trashbin/l10n/bs.php +++ b/apps/files_trashbin/l10n/bs.php @@ -1,7 +1,5 @@ "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","","") +"Name" => "Ime" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index eb57aa16aa..fa3f63ddb2 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", -"perform restore operation" => "executa l'operació de restauració", "Error" => "Error", -"delete file permanently" => "esborra el fitxer permanentment", -"Delete permanently" => "Esborra permanentment", -"Name" => "Nom", -"Deleted" => "Eliminat", -"_%n folder_::_%n folders_" => array("","%n carpetes"), -"_%n file_::_%n files_" => array("","%n fitxers"), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", +"Name" => "Nom", "Restore" => "Recupera", +"Deleted" => "Eliminat", "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index f0bebee742..ff0a69572f 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", -"perform restore operation" => "provést obnovu", "Error" => "Chyba", -"delete file permanently" => "trvale odstranit soubor", -"Delete permanently" => "Trvale odstranit", -"Name" => "Název", -"Deleted" => "Smazáno", -"_%n folder_::_%n folders_" => array("%n adresář","%n adresáře","%n adresářů"), -"_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", +"Name" => "Název", "Restore" => "Obnovit", +"Deleted" => "Smazáno", "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 123a445c2c..f2eb81d67d 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", -"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", -"delete file permanently" => "dileu ffeil yn barhaol", -"Delete permanently" => "Dileu'n barhaol", -"Name" => "Enw", -"Deleted" => "Wedi dileu", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Name" => "Enw", "Restore" => "Adfer", +"Deleted" => "Wedi dileu", "Delete" => "Dileu", "Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 2fbc089387..c396706d15 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", -"perform restore operation" => "udfør gendannelsesoperation", "Error" => "Fejl", -"delete file permanently" => "slet fil permanent", -"Delete permanently" => "Slet permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", +"Name" => "Navn", "Restore" => "Gendan", +"Deleted" => "Slettet", "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index ad6e0839bd..2b6703dd05 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "gelöscht", -"_%n folder_::_%n folders_" => array("","%n Ordner"), -"_%n file_::_%n files_" => array("","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_CH.php b/apps/files_trashbin/l10n/de_CH.php index 92290a0de5..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_CH.php +++ b/apps/files_trashbin/l10n/de_CH.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 0df6941280..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Dateien","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 939c7fed61..ffeafb7e9d 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", -"perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", "Error" => "Σφάλμα", -"delete file permanently" => "μόνιμη διαγραφή αρχείου", -"Delete permanently" => "Μόνιμη διαγραφή", -"Name" => "Όνομα", -"Deleted" => "Διαγράφηκε", -"_%n folder_::_%n folders_" => array("","%n φάκελοι"), -"_%n file_::_%n files_" => array("","%n αρχεία"), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", +"Name" => "Όνομα", "Restore" => "Επαναφορά", +"Deleted" => "Διαγράφηκε", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); diff --git a/apps/files_trashbin/l10n/en_GB.php b/apps/files_trashbin/l10n/en_GB.php index be9d8b9f52..6b179c8653 100644 --- a/apps/files_trashbin/l10n/en_GB.php +++ b/apps/files_trashbin/l10n/en_GB.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Couldn't delete %s permanently", "Couldn't restore %s" => "Couldn't restore %s", -"perform restore operation" => "perform restore operation", "Error" => "Error", -"delete file permanently" => "delete file permanently", -"Delete permanently" => "Delete permanently", -"Name" => "Name", -"Deleted" => "Deleted", -"_%n folder_::_%n folders_" => array("%n folder","%n folders"), -"_%n file_::_%n files_" => array("%n file","%n files"), "restored" => "restored", "Nothing in here. Your trash bin is empty!" => "Nothing in here. Your recycle bin is empty!", +"Name" => "Name", "Restore" => "Restore", +"Deleted" => "Deleted", "Delete" => "Delete", "Deleted Files" => "Deleted Files" ); diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index d1e30cba58..3f4023c640 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,10 +1,7 @@ "Eraro", -"Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index a5639c2c71..db7a617729 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", -"perform restore operation" => "restaurar", "Error" => "Error", -"delete file permanently" => "eliminar archivo permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nombre", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 0cb969a348..842101d33b 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", -"perform restore operation" => "Restaurar", "Error" => "Error", -"delete file permanently" => "Borrar archivo de manera permanente", -"Delete permanently" => "Borrar de manera permanente", -"Name" => "Nombre", -"Deleted" => "Borrado", -"_%n folder_::_%n folders_" => array("%n directorio","%n directorios"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Borrado", "Delete" => "Borrar", "Deleted Files" => "Archivos eliminados" ); diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 43c182ea7b..56eebc79f0 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", -"perform restore operation" => "soorita taastamine", "Error" => "Viga", -"delete file permanently" => "kustuta fail jäädavalt", -"Delete permanently" => "Kustuta jäädavalt", -"Name" => "Nimi", -"Deleted" => "Kustutatud", -"_%n folder_::_%n folders_" => array("","%n kataloogi"), -"_%n file_::_%n files_" => array("%n fail","%n faili"), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", +"Name" => "Nimi", "Restore" => "Taasta", +"Deleted" => "Kustutatud", "Delete" => "Kustuta", "Deleted Files" => "Kustutatud failid" ); diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 240582a7ea..04d92e01b3 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", -"perform restore operation" => "berreskuratu", "Error" => "Errorea", -"delete file permanently" => "ezabatu fitxategia betirako", -"Delete permanently" => "Ezabatu betirako", -"Name" => "Izena", -"Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), -"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "restored" => "Berrezarrita", "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", +"Name" => "Izena", "Restore" => "Berrezarri", +"Deleted" => "Ezabatuta", "Delete" => "Ezabatu", "Deleted Files" => "Ezabatutako Fitxategiak" ); diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 654f20a5f1..8409987b89 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", -"perform restore operation" => "انجام عمل بازگرداندن", "Error" => "خطا", -"delete file permanently" => "حذف فایل برای همیشه", -"Delete permanently" => "حذف قطعی", -"Name" => "نام", -"Deleted" => "حذف شده", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", +"Name" => "نام", "Restore" => "بازیابی", +"Deleted" => "حذف شده", "Delete" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index f03950981c..b956c1c1e4 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", -"perform restore operation" => "suorita palautustoiminto", "Error" => "Virhe", -"delete file permanently" => "poista tiedosto pysyvästi", -"Delete permanently" => "Poista pysyvästi", -"Name" => "Nimi", -"Deleted" => "Poistettu", -"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), -"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", +"Name" => "Nimi", "Restore" => "Palauta", +"Deleted" => "Poistettu", "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 39e1ac8614..593310e2c3 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", -"perform restore operation" => "effectuer l'opération de restauration", "Error" => "Erreur", -"delete file permanently" => "effacer définitivement le fichier", -"Delete permanently" => "Supprimer de façon définitive", -"Name" => "Nom", -"Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), -"_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "restored" => "restauré", "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", +"Name" => "Nom", "Restore" => "Restaurer", +"Deleted" => "Effacé", "Delete" => "Supprimer", "Deleted Files" => "Fichiers effacés" ); diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 568c17607f..ae7ef8b319 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", -"perform restore operation" => "realizar a operación de restauración", "Error" => "Erro", -"delete file permanently" => "eliminar o ficheiro permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", +"Name" => "Nome", "Restore" => "Restablecer", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 6aa6264a31..d0bcb327d4 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", -"perform restore operation" => "ביצוע פעולת שחזור", "Error" => "שגיאה", -"delete file permanently" => "מחיקת קובץ לצמיתות", -"Delete permanently" => "מחיקה לצמיתות", -"Name" => "שם", -"Deleted" => "נמחק", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", +"Name" => "שם", "Restore" => "שחזור", +"Deleted" => "נמחק", "Delete" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); diff --git a/apps/files_trashbin/l10n/hi.php b/apps/files_trashbin/l10n/hi.php index 71711218b1..d4a26011b5 100644 --- a/apps/files_trashbin/l10n/hi.php +++ b/apps/files_trashbin/l10n/hi.php @@ -1,7 +1,5 @@ "त्रुटि", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "त्रुटि" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index d227b4979a..8e8fd22f8e 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 766ddcbce4..aa8b45a7d6 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", -"perform restore operation" => "a visszaállítás végrehajtása", "Error" => "Hiba", -"delete file permanently" => "az állomány végleges törlése", -"Delete permanently" => "Végleges törlés", -"Name" => "Név", -"Deleted" => "Törölve", -"_%n folder_::_%n folders_" => array("","%n mappa"), -"_%n file_::_%n files_" => array("","%n állomány"), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", +"Name" => "Név", "Restore" => "Visszaállítás", +"Deleted" => "Törölve", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 6ff58b5620..f933bec8fe 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,7 +1,5 @@ array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index c583344a81..7709ef030e 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 6aad1302f4..a55520fc11 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", -"perform restore operation" => "jalankan operasi pemulihan", "Error" => "Galat", -"delete file permanently" => "hapus berkas secara permanen", -"Delete permanently" => "Hapus secara permanen", -"Name" => "Nama", -"Deleted" => "Dihapus", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", +"Name" => "Nama", "Restore" => "Pulihkan", +"Deleted" => "Dihapus", "Delete" => "Hapus", "Deleted Files" => "Berkas yang Dihapus" ); diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 55ae433646..8ccf89739f 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index e4b39c4a6d..b631e0c9e4 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", -"perform restore operation" => "esegui operazione di ripristino", "Error" => "Errore", -"delete file permanently" => "elimina il file definitivamente", -"Delete permanently" => "Elimina definitivamente", -"Name" => "Nome", -"Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), -"_%n file_::_%n files_" => array("%n file","%n file"), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", +"Name" => "Nome", "Restore" => "Ripristina", +"Deleted" => "Eliminati", "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index eb9748d57c..e819a92559 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", -"perform restore operation" => "復元操作を実行する", "Error" => "エラー", -"delete file permanently" => "ファイルを完全に削除する", -"Delete permanently" => "完全に削除する", -"Name" => "名前", -"Deleted" => "削除済み", -"_%n folder_::_%n folders_" => array("%n個のフォルダ"), -"_%n file_::_%n files_" => array("%n個のファイル"), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", +"Name" => "名前", "Restore" => "復元", +"Deleted" => "削除済み", "Delete" => "削除", "Deleted Files" => "削除されたファイル" ); diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 236d8951e9..7440171dee 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", -"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", "Error" => "შეცდომა", -"delete file permanently" => "ფაილის სრულად წაშლა", -"Delete permanently" => "სრულად წაშლა", -"Name" => "სახელი", -"Deleted" => "წაშლილი", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Name" => "სახელი", "Restore" => "აღდგენა", +"Deleted" => "წაშლილი", "Delete" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 9ac5f9802c..809ecfea15 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s를 영구적으로 삭제할수 없습니다", "Couldn't restore %s" => "%s를 복원할수 없습니다", -"perform restore operation" => "복원 작업중", "Error" => "오류", -"delete file permanently" => "영구적으로 파일 삭제하기", -"Delete permanently" => "영원히 삭제", -"Name" => "이름", -"Deleted" => "삭제됨", -"_%n folder_::_%n folders_" => array("폴더 %n개"), -"_%n file_::_%n files_" => array("파일 %n개 "), "restored" => "복원됨", "Nothing in here. Your trash bin is empty!" => "현재 휴지통은 비어있습니다!", +"Name" => "이름", "Restore" => "복원", +"Deleted" => "삭제됨", "Delete" => "삭제", "Deleted Files" => "삭제된 파일들" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 3f110f0600..c1962a4075 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,8 +1,6 @@ "هه‌ڵه", -"Name" => "ناو", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Name" => "ناو" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index cbfd515a8b..b434ae7217 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 0a51290f4d..c4a8463fd0 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", -"perform restore operation" => "atkurti", "Error" => "Klaida", -"delete file permanently" => "failą ištrinti negrįžtamai", -"Delete permanently" => "Ištrinti negrįžtamai", -"Name" => "Pavadinimas", -"Deleted" => "Ištrinti", -"_%n folder_::_%n folders_" => array("","","%n aplankų"), -"_%n file_::_%n files_" => array("","","%n failų"), "restored" => "atstatyta", "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", +"Name" => "Pavadinimas", "Restore" => "Atstatyti", +"Deleted" => "Ištrinti", "Delete" => "Ištrinti", "Deleted Files" => "Ištrinti failai" ); diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index ca833b2420..5c04a0c97d 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", -"perform restore operation" => "veikt atjaunošanu", "Error" => "Kļūda", -"delete file permanently" => "dzēst datni pavisam", -"Delete permanently" => "Dzēst pavisam", -"Name" => "Nosaukums", -"Deleted" => "Dzēsts", -"_%n folder_::_%n folders_" => array("Nekas, %n mapes","%n mape","%n mapes"), -"_%n file_::_%n files_" => array("Neviens! %n faaili","%n fails","%n faili"), "restored" => "atjaunots", "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", +"Name" => "Nosaukums", "Restore" => "Atjaunot", +"Deleted" => "Dzēsts", "Delete" => "Dzēst", "Deleted Files" => "Dzēstās datnes" ); diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 965518dbc8..9200be01cd 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1b5ca07c70..1972eba031 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index 8eb3bc1846..eb917e3dde 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", -"perform restore operation" => "utfør gjenopprettings operasjon", "Error" => "Feil", -"delete file permanently" => "slett filer permanent", -"Delete permanently" => "Slett permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("","%n mapper"), -"_%n file_::_%n files_" => array("","%n filer"), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", +"Name" => "Navn", "Restore" => "Gjenopprett", +"Deleted" => "Slettet", "Delete" => "Slett", "Deleted Files" => "Slettet filer" ); diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index b3ae57da56..37a8ca6540 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", -"perform restore operation" => "uitvoeren restore operatie", "Error" => "Fout", -"delete file permanently" => "verwijder bestanden definitief", -"Delete permanently" => "Verwijder definitief", -"Name" => "Naam", -"Deleted" => "Verwijderd", -"_%n folder_::_%n folders_" => array("%n map","%n mappen"), -"_%n file_::_%n files_" => array("%n bestand","%n bestanden"), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", +"Name" => "Naam", "Restore" => "Herstellen", +"Deleted" => "Verwijderd", "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 73fe48211c..39e2d5cda9 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", -"perform restore operation" => "utfør gjenoppretting", "Error" => "Feil", -"delete file permanently" => "slett fila for godt", -"Delete permanently" => "Slett for godt", -"Name" => "Namn", -"Deleted" => "Sletta", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "gjenoppretta", "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", +"Name" => "Namn", "Restore" => "Gjenopprett", +"Deleted" => "Sletta", "Delete" => "Slett", "Deleted Files" => "Sletta filer" ); diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index a62902c3b7..b472683f08 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pa.php b/apps/files_trashbin/l10n/pa.php index e53707fd70..825a49aaea 100644 --- a/apps/files_trashbin/l10n/pa.php +++ b/apps/files_trashbin/l10n/pa.php @@ -1,8 +1,6 @@ "ਗਲਤੀ", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index c838a6b956..961b772782 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", -"perform restore operation" => "wykonywanie operacji przywracania", "Error" => "Błąd", -"delete file permanently" => "trwale usuń plik", -"Delete permanently" => "Trwale usuń", -"Name" => "Nazwa", -"Deleted" => "Usunięte", -"_%n folder_::_%n folders_" => array("","","%n katalogów"), -"_%n file_::_%n files_" => array("","","%n plików"), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", +"Name" => "Nazwa", "Restore" => "Przywróć", +"Deleted" => "Usunięte", "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index e0e8c8faec..c2100efe96 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "realizar operação de restauração", "Error" => "Erro", -"delete file permanently" => "excluir arquivo permanentemente", -"Delete permanently" => "Excluir permanentemente", -"Name" => "Nome", -"Deleted" => "Excluído", -"_%n folder_::_%n folders_" => array("","%n pastas"), -"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Excluído", "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 9dccc773cb..89e84a84d2 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", -"delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Apagado", -"_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Apagado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 12377bb065..f285dcc164 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,10 +1,7 @@ "Eroare", -"Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"_%n folder_::_%n folders_" => array("","","%n directoare"), -"_%n file_::_%n files_" => array("","","%n fișiere"), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 5f52263a11..06a4f864c6 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", -"perform restore operation" => "выполнить операцию восстановления", "Error" => "Ошибка", -"delete file permanently" => "удалить файл навсегда", -"Delete permanently" => "Удалено навсегда", -"Name" => "Имя", -"Deleted" => "Удалён", -"_%n folder_::_%n folders_" => array("","","%n папок"), -"_%n file_::_%n files_" => array("","","%n файлов"), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", +"Name" => "Имя", "Restore" => "Восстановить", +"Deleted" => "Удалён", "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 6dad84437c..87e928989e 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 50fb58a44e..b23383c121 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", -"perform restore operation" => "vykonať obnovu", "Error" => "Chyba", -"delete file permanently" => "trvalo zmazať súbor", -"Delete permanently" => "Zmazať trvalo", -"Name" => "Názov", -"Deleted" => "Zmazané", -"_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), -"_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", +"Name" => "Názov", "Restore" => "Obnoviť", +"Deleted" => "Zmazané", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index eb2d42a18f..a3c0bcf92a 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", -"perform restore operation" => "izvedi opravilo obnavljanja", "Error" => "Napaka", -"delete file permanently" => "dokončno izbriši datoteko", -"Delete permanently" => "Izbriši dokončno", -"Name" => "Ime", -"Deleted" => "Izbrisano", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", +"Name" => "Ime", "Restore" => "Obnovi", +"Deleted" => "Izbrisano", "Delete" => "Izbriši", "Deleted Files" => "Izbrisane datoteke" ); diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index 50ca7d901b..63957080f3 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", -"perform restore operation" => "ekzekuto operacionin e rivendosjes", "Error" => "Veprim i gabuar", -"delete file permanently" => "eliminoje përfundimisht skedarin", -"Delete permanently" => "Elimino përfundimisht", -"Name" => "Emri", -"Deleted" => "Eliminuar", -"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), -"_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "restored" => "rivendosur", "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", +"Name" => "Emri", "Restore" => "Rivendos", +"Deleted" => "Eliminuar", "Delete" => "Elimino", "Deleted Files" => "Skedarë të eliminuar" ); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 7311e759f9..c893dba118 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,14 +1,10 @@ "врати у претходно стање", "Error" => "Грешка", -"Delete permanently" => "Обриши за стално", -"Name" => "Име", -"Deleted" => "Обрисано", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", +"Name" => "Име", "Restore" => "Врати", +"Deleted" => "Обрисано", "Delete" => "Обриши" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index fa30afcf4b..9f18ac8be7 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 47a52f2573..21d4d15e9c 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", -"perform restore operation" => "utför återställning", "Error" => "Fel", -"delete file permanently" => "radera filen permanent", -"Delete permanently" => "Radera permanent", -"Name" => "Namn", -"Deleted" => "Raderad", -"_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", +"Name" => "Namn", "Restore" => "Återskapa", +"Deleted" => "Raderad", "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index ed93b459c7..79349919b5 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 0d803a8e64..01262b7823 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,10 +1,7 @@ "పొరపాటు", -"Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index 31caa11aac..65fd081a95 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,13 +1,10 @@ "ดำเนินการคืนค่า", "Error" => "ข้อผิดพลาด", -"Name" => "ชื่อ", -"Deleted" => "ลบแล้ว", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", +"Name" => "ชื่อ", "Restore" => "คืนค่า", +"Deleted" => "ลบแล้ว", "Delete" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index f25b179bc1..873dc631fe 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", -"perform restore operation" => "Geri yükleme işlemini gerçekleştir", "Error" => "Hata", -"delete file permanently" => "Dosyayı kalıcı olarak sil", -"Delete permanently" => "Kalıcı olarak sil", -"Name" => "İsim", -"Deleted" => "Silindi", -"_%n folder_::_%n folders_" => array("","%n dizin"), -"_%n file_::_%n files_" => array("","%n dosya"), "restored" => "geri yüklendi", "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", +"Name" => "İsim", "Restore" => "Geri yükle", +"Deleted" => "Silindi", "Delete" => "Sil", "Deleted Files" => "Silinen Dosyalar" ); diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index ad983aee18..54c040c88a 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,12 +1,9 @@ "خاتالىق", -"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index aa4b659503..c54d45aaa8 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", -"perform restore operation" => "виконати операцію відновлення", "Error" => "Помилка", -"delete file permanently" => "видалити файл назавжди", -"Delete permanently" => "Видалити назавжди", -"Name" => "Ім'я", -"Deleted" => "Видалено", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", +"Name" => "Ім'я", "Restore" => "Відновити", +"Deleted" => "Видалено", "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index f6c6a3da3c..49c82f5387 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,7 +1,5 @@ "ایرر", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "ایرر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 072d799fa6..c5e899392b 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", -"perform restore operation" => "thực hiện phục hồi", "Error" => "Lỗi", -"delete file permanently" => "xóa file vĩnh viễn", -"Delete permanently" => "Xóa vĩnh vễn", -"Name" => "Tên", -"Deleted" => "Đã xóa", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", +"Name" => "Tên", "Restore" => "Khôi phục", +"Deleted" => "Đã xóa", "Delete" => "Xóa", "Deleted Files" => "File đã xóa" ); diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index dc2d5b4c00..24d9002adc 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", -"perform restore operation" => "执行恢复操作", "Error" => "错误", -"delete file permanently" => "彻底删除文件", -"Delete permanently" => "永久删除", -"Name" => "名称", -"Deleted" => "已删除", -"_%n folder_::_%n folders_" => array("%n 文件夹"), -"_%n file_::_%n files_" => array("%n个文件"), "restored" => "已恢复", "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", +"Name" => "名称", "Restore" => "恢复", +"Deleted" => "已删除", "Delete" => "删除", "Deleted Files" => "已删除文件" ); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 3f0d663bae..877912e9c4 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index bfc2fc659d..1f05a2687b 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "無法永久刪除 %s", "Couldn't restore %s" => "無法還原 %s", -"perform restore operation" => "進行還原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除檔案", -"Delete permanently" => "永久刪除", -"Name" => "名稱", -"Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array("%n 個資料夾"), -"_%n file_::_%n files_" => array("%n 個檔案"), "restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的回收桶是空的!", +"Name" => "名稱", "Restore" => "還原", +"Deleted" => "已刪除", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 455ad62d84..36a06b99da 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut nom d'usuari intern:", "Override UUID detection" => "Sobrescriu la detecció UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).", -"UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.", "Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 9109a8c710..be84aa2b64 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut interního uživatelského jména:", "Override UUID detection" => "Nastavit ručně UUID atribut", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP.", -"UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapování uživatelských jmen z LDAPu", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi.", "Clear Username-LDAP User Mapping" => "Zrušit mapování uživatelských jmen LDAPu", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index cb13275faf..211132962a 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attribut für interne Benutzernamen:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php index df9175e73b..28971ed9e4 100644 --- a/apps/user_ldap/l10n/de_CH.php +++ b/apps/user_ldap/l10n/de_CH.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 677d603ffa..cfc9117327 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index d613be3486..3be8add83e 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internal Username Attribute:", "Override UUID detection" => "Override UUID detection", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously 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.", -"UUID Attribute:" => "UUID Attribute:", "Username-LDAP User Mapping" => "Username-LDAP User Mapping", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.", "Clear Username-LDAP User Mapping" => "Clear Username-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 4f37d5177a..537ee1e4bd 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre de usuario Interno:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 2436df8de7..c9ea9184b4 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre Interno de usuario:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea ú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 mapeados (agregados).", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index b949fe0204..943ad0bc11 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:", "Override UUID detection" => "Tühista UUID tuvastus", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", -"UUID Attribute:" => "UUID atribuut:", "Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.", "Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index c4db39521d..89bbe5170b 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Internal Username" => "نام کاربری داخلی", "Internal Username Attribute:" => "ویژگی نام کاربری داخلی:", "Override UUID detection" => "نادیده گرفتن تشخیص UUID ", -"UUID Attribute:" => "صفت UUID:", "Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر LDAP ", "Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ", "Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 8b6027b81e..5ab2f34cb4 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Nom d'utilisateur interne:", "Override UUID detection" => "Surcharger la détection d'UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP.", -"UUID Attribute:" => "Attribut UUID :", "Username-LDAP User Mapping" => "Association Nom d'utilisateur-Utilisateur LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation.", "Clear Username-LDAP User Mapping" => "Supprimer l'association utilisateur interne-utilisateur LDAP", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 911e481ca7..9698386cd8 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo do nome de usuario interno:", "Override UUID detection" => "Ignorar a detección do UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP.", -"UUID Attribute:" => "Atributo do UUID:", "Username-LDAP User Mapping" => "Asignación do usuario ao «nome de usuario LDAP»", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais.", "Clear Username-LDAP User Mapping" => "Limpar a asignación do usuario ao «nome de usuario LDAP»", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index b43dcbc2c8..84f8ca948e 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -75,7 +75,6 @@ $TRANSLATIONS = array( "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. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve...............................", "Internal Username Attribute:" => "A belső felhasználónév attribútuma:", "Override UUID detection" => "Az UUID-felismerés felülbírálása", -"UUID Attribute:" => "UUID attribútum:", "Username-LDAP User Mapping" => "Felhasználó - LDAP felhasználó hozzárendelés", "Clear Username-LDAP User Mapping" => "A felhasználó - LDAP felhasználó hozzárendelés törlése", "Clear Groupname-LDAP Group Mapping" => "A csoport - LDAP csoport hozzárendelés törlése", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 4b47846f22..914cc3d32a 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attributo nome utente interno:", "Override UUID detection" => "Ignora rilevamento UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti).", -"UUID Attribute:" => "Attributo UUID:", "Username-LDAP User Mapping" => "Associazione Nome utente-Utente LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.", "Clear Username-LDAP User Mapping" => "Cancella associazione Nome utente-Utente LDAP", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index e9ef2165bb..904a93e1c2 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "内部ユーザ名属性:", "Override UUID detection" => "UUID検出を再定義する", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", -"UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php index f052201682..05edf75e8b 100644 --- a/apps/user_ldap/l10n/lt_LT.php +++ b/apps/user_ldap/l10n/lt_LT.php @@ -47,7 +47,6 @@ $TRANSLATIONS = array( "Internal Username" => "Vidinis naudotojo vardas", "Internal Username Attribute:" => "Vidinis naudotojo vardo atributas:", "Override UUID detection" => "Perrašyti UUID aptikimą", -"UUID Attribute:" => "UUID atributas:", "Username-LDAP User Mapping" => "Naudotojo vardo - LDAP naudotojo sąsaja", "Clear Username-LDAP User Mapping" => "Išvalyti naudotojo vardo - LDAP naudotojo sąsają", "Clear Groupname-LDAP Group Mapping" => "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index b56dcf1579..2704d22921 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne gebruikersnaam attribuut:", "Override UUID detection" => "Negeren UUID detectie", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen.", -"UUID Attribute:" => "UUID Attribuut:", "Username-LDAP User Mapping" => "Gebruikersnaam-LDAP gebruikers vertaling", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.", "Clear Username-LDAP User Mapping" => "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 7801f73dc1..7e11e6cfc7 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Wewnętrzna nazwa użytkownika", "Internal Username Attribute:" => "Wewnętrzny atrybut nazwy uzżytkownika:", "Override UUID detection" => "Zastąp wykrywanie UUID", -"UUID Attribute:" => "Atrybuty UUID:", "Username-LDAP User Mapping" => "Mapowanie użytkownika LDAP", "Clear Username-LDAP User Mapping" => "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" => "Czyść Mapowanie nazwy grupy LDAP", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 9469146d35..a09d2779db 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Interno de Nome de Usuário:", "Override UUID detection" => "Substituir detecção UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados).", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Usuário-LDAP Mapeamento de Usuário", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental.", "Clear Username-LDAP User Mapping" => "Limpar Mapeamento de Usuário Nome de Usuário-LDAP", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index b88ad18f0f..338d68d1df 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Nome de utilizador interno", "Internal Username Attribute:" => "Atributo do nome de utilizador interno", "Override UUID detection" => "Passar a detecção do UUID", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", "Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index f1cf51dc51..a76afa1fe1 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Аттрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", -"UUID Attribute:" => "Аттрибут для UUID:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.", "Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index df71a71e93..08b32e75f9 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", -"UUID Attribute:" => "UUID atribút:", "Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 703b643db5..de81b2c8de 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Interno uporabniško ime", "Internal Username Attribute:" => "Atribut Interno uporabniško ime", "Override UUID detection" => "Prezri zaznavo UUID", -"UUID Attribute:" => "Atribut UUID", "Username-LDAP User Mapping" => "Preslikava uporabniško ime - LDAP-uporabnik", "Clear Username-LDAP User Mapping" => "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika", "Clear Groupname-LDAP Group Mapping" => "Izbriši preslikavo Skupine in LDAP-skupine", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 3288438c09..a5c060c717 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internt Användarnamn Attribut:", "Override UUID detection" => "Åsidosätt UUID detektion", "By default, the UUID attribute is automatically detected. 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 behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.", -"UUID Attribute:" => "UUID Attribut:", "Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping", "Usernames are used 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 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!", "Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index c30cb42150..e59b91a0e9 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "内部用户名", "Internal Username Attribute:" => "内部用户名属性:", "Override UUID detection" => "超越UUID检测", -"UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "用户名-LDAP用户映射", "Clear Username-LDAP User Mapping" => "清除用户-LDAP用户映射", "Clear Groupname-LDAP Group Mapping" => "清除组用户-LDAP级映射", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index c69cf59f38..bd967fa8aa 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -1,6 +1,7 @@ "%s shared \"%s\" with you", +"Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ", "group" => "group", "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Resharing is not allowed", "Shared in {item} with {user}" => "Shared in {item} with {user}", "Unshare" => "Unshare", +"notify user by email" => "notify user by email", "can edit" => "can edit", "access control" => "access control", "create" => "create", @@ -126,6 +128,9 @@ $TRANSLATIONS = array( "Help" => "Help", "Access forbidden" => "Access denied", "Cloud not found" => "Cloud not found", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "The share will expire on %s.\n\n", +"Cheers!" => "Cheers!", "Edit categories" => "Edit categories", "Add" => "Add", "Security Warning" => "Security Warning", @@ -146,15 +151,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Database tablespace", "Database host" => "Database host", "Finish setup" => "Finish setup", +"Finishing …" => "Finishing …", "%s is available. Get more information on how to update." => "%s is available. Get more information on how to update.", "Log out" => "Log out", "Automatic logon rejected!" => "Automatic logon rejected!", "If you did not change your password recently, your account may be compromised!" => "If you did not change your password recently, your account may be compromised!", "Please change your password to secure your account again." => "Please change your password to secure your account again.", +"Server side authentication failed!" => "Server side authentication failed!", +"Please contact your administrator." => "Please contact your administrator.", "Lost your password?" => "Lost your password?", "remember" => "remember", "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", +"Hey there,

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

    " => "Hey there,

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

    ", +"The share will expire on %s.

    " => "The share will expire on %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es.php b/core/l10n/es.php index 29eea2dbf4..fa3c889d24 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,7 @@ "%s ha compatido »%s« contigo", +"Couldn't send mail to following users: %s " => "No se pudo enviar mensajes a los siguientes usuarios: %s", "group" => "grupo", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "No se permite compartir de nuevo", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", +"notify user by email" => "notificar al usuario por correo electrónico", "can edit" => "puede editar", "access control" => "control de acceso", "create" => "crear", @@ -126,6 +128,9 @@ $TRANSLATIONS = array( "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encuentra la nube", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n", +"The share will expire on %s.\n\n" => "El objeto dejará de ser compartido el %s.\n\n", +"Cheers!" => "¡Saludos!", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", @@ -146,15 +151,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Espacio de tablas de la base de datos", "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", +"Finishing …" => "Finalizando...", "%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", "Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", +"Server side authentication failed!" => "La autenticación a fallado en el servidor.", +"Please contact your administrator." => "Sírvase contactar a su administrador.", "Lost your password?" => "¿Ha perdido su contraseña?", "remember" => "recordar", "Log in" => "Entrar", "Alternative Logins" => "Inicios de sesión alternativos", +"Hey there,

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

    " => "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    ", +"The share will expire on %s.

    " => "El objeto dejará de ser compartido el %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 7b26850166..7a90658140 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -62,10 +62,12 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", "Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", +"If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.", "Cancel" => "Loobu", "Continue" => "Jätka", "(all selected)" => "(kõik valitud)", "({count} selected)" => "({count} valitud)", +"Error loading file exists template" => "Viga faili olemasolu malli laadimisel", "The object type is not specified." => "Objekti tüüp pole määratletud.", "Error" => "Viga", "The app name is not specified." => "Rakenduse nimi ole määratletud.", @@ -155,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", "If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!", "Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.", +"Server side authentication failed!" => "Serveripoolne autentimine ebaõnnestus!", +"Please contact your administrator." => "Palun kontakteeru oma süsteemihalduriga.", "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", "Log in" => "Logi sisse", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 83460f4334..eb3c952546 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,6 +1,7 @@ "%s partagé »%s« avec vous", +"Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s", "group" => "groupe", "Turned on maintenance mode" => "Basculé en mode maintenance", "Turned off maintenance mode" => "Basculé en mode production (non maintenance)", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Le repartage n'est pas autorisé", "Shared in {item} with {user}" => "Partagé dans {item} avec {user}", "Unshare" => "Ne plus partager", +"notify user by email" => "Prévenir l'utilisateur par couriel", "can edit" => "édition autorisée", "access control" => "contrôle des accès", "create" => "créer", @@ -126,6 +128,9 @@ $TRANSLATIONS = array( "Help" => "Aide", "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n", +"The share will expire on %s.\n\n" => "Le partage expire le %s.\n\n", +"Cheers!" => "Salutations!", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", "Security Warning" => "Avertissement de sécurité", @@ -146,15 +151,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Tablespaces de la base de données", "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", +"Finishing …" => "En cours de finalisation...", "%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", "Automatic logon rejected!" => "Connexion automatique rejetée !", "If you did not change your password recently, your account may be compromised!" => "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !", "Please change your password to secure your account again." => "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte.", +"Server side authentication failed!" => "L'authentification côté serveur a échoué !", +"Please contact your administrator." => "Veuillez contacter votre administrateur.", "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", +"Hey there,

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

    " => "Bonjour,

    Juste pour vous informer que %s a partagé »%s« avec vous.
    Consultez-le !

    ", +"The share will expire on %s.

    " => "Le partage expirera le %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 5d60f5d3aa..516d42f520 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "Błąd podczas dodawania %s do ulubionych.", "No categories selected for deletion." => "Nie zaznaczono kategorii do usunięcia.", "Error removing %s from favorites." => "Błąd podczas usuwania %s z ulubionych.", +"No image or file provided" => "Brak obrazu lub pliku dostarczonego", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Nieprawidłowe zdjęcie", "Sunday" => "Niedziela", @@ -84,6 +85,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Współdzielenie nie jest możliwe", "Shared in {item} with {user}" => "Współdzielone w {item} z {user}", "Unshare" => "Zatrzymaj współdzielenie", +"notify user by email" => "powiadom użytkownika przez email", "can edit" => "może edytować", "access control" => "kontrola dostępu", "create" => "utwórz", @@ -118,6 +120,8 @@ $TRANSLATIONS = array( "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", +"The share will expire on %s.\n\n" => "Udostępnienie wygaśnie w dniu %s.\n\n", +"Cheers!" => "Pozdrawiam!", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", @@ -138,15 +142,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Obszar tabel bazy danych", "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", +"Finishing …" => "Kończę ...", "%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.", "Log out" => "Wyloguj", "Automatic logon rejected!" => "Automatyczne logowanie odrzucone!", "If you did not change your password recently, your account may be compromised!" => "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!", "Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.", +"Server side authentication failed!" => "Uwierzytelnianie po stronie serwera nie powiodło się!", +"Please contact your administrator." => "Skontaktuj się z administratorem", "Lost your password?" => "Nie pamiętasz hasła?", "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", +"Hey there,

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

    " => "Cześć,

    Informuję cię że %s udostępnia ci »%s«.\n
    Zobacz!

    ", +"The share will expire on %s.

    " => "Udostępnienie wygaśnie w dniu %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 57603895c9..3ab3b94745 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -16,6 +16,8 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "%s favorilere eklenirken hata oluştu", "No categories selected for deletion." => "Silmek için bir kategori seçilmedi", "Error removing %s from favorites." => "%s favorilere çıkarılırken hata oluştu", +"Unknown filetype" => "Bilinmeyen dosya türü", +"Invalid image" => "Geçersiz resim", "Sunday" => "Pazar", "Monday" => "Pazartesi", "Tuesday" => "Salı", diff --git a/l10n/ach/files_sharing.po b/l10n/ach/files_sharing.po index a6aa642bca..aeebd1b020 100644 --- a/l10n/ach/files_sharing.po +++ b/l10n/ach/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ach/files_trashbin.po b/l10n/ach/files_trashbin.po index 327f892ea0..1eeccfe967 100644 --- a/l10n/ach/files_trashbin.po +++ b/l10n/ach/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index 8c2514234b..3c13f155ee 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po index aa1df900ca..b243c28faa 100644 --- a/l10n/ady/files_sharing.po +++ b/l10n/ady/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:16 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:19 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:27 templates/public.php:93 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:44 templates/public.php:47 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:57 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:90 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po index 1b92cb7f60..c8916178f7 100644 --- a/l10n/ady/files_trashbin.po +++ b/l10n/ady/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po index de9ce044f3..2548c7e3ea 100644 --- a/l10n/ady/user_ldap.po +++ b/l10n/ady/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 1aa1c35c8b..4b54e1192c 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Wagwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 020abe02dd..4d4d4b186e 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 77d655e8a7..5d6c979971 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hulp" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index b931dc9eae..a20b34259f 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Meesh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 02:00+0000\n" +"Last-Translator: Meesh \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +64,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "اسم المجلد" #: templates/settings.php:10 msgid "External storage" @@ -91,7 +92,7 @@ msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "كل المستخدمين" #: templates/settings.php:92 msgid "Groups" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index df2684b93d..a0c36d0049 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "كلمة المرور" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "تطبيق" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "تحميل" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "رفع" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 9edd1eb64d..3c6544d35f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 19:20+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,50 +27,10 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "إبدء عملية الإستعادة" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطأ" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "اسم" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "تم الحذف" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "مجلدات %n" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] " ملفات %n" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -79,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "اسم" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "استعيد" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "تم الحذف" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "إلغاء" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7044e64401..3f48a29c48 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "المساعدة" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index d8ea6184ff..0a51f46b08 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 770cceb542..d784d5ddc5 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -27,47 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index f2cad633ff..5f5d2303a8 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 20f297f9cd..a412adb58f 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Парола" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Потвърждение" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Качване" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 4808f7ca75..3dad233d5a 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "извършване на действие по възстановяване" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "изтриване на файла завинаги" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Изтриване завинаги" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Изтрито" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +40,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Име" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Изтрито" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index af4a44396f..d013104d5d 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помощ" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index f44908ae2c..27111cae91 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "কূটশব্দ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "জমা দিন" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 380a02ad7c..4161e8bfbd 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "সমস্যা" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "রাম" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "রাম" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "মুছে" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index da700cd7af..c2b70b81a0 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "সহায়িকা" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 47ff900767..79f667fc33 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 319adc5d23..e2a429d710 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,45 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 6e276fcf03..45a07276bc 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 4e4d3419ba..7cd1179aa3 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "la contrasenya és incorrecta. Intenteu-ho de nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasenya" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Aquest enllaç sembla que no funciona." @@ -54,28 +54,28 @@ msgstr "s'ha desactivat la compartició" msgid "For more info, please ask the person who sent this link." msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Baixa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Puja" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3f33f7d649..38bb538e56 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "executa l'operació de restauració" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "esborra el fitxer permanentment" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Esborra permanentment" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminat" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n carpetes" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n fitxers" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurat" @@ -72,11 +40,19 @@ msgstr "restaurat" msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Recupera" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Eliminat" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Esborra" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 79d3480d9a..45266ce5e4 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Elimina el mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Elimina el mapatge de grup Nom de grup-LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Comprovació de la configuració" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 5b180f5c55..2550750494 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo není správné. Zkuste to znovu." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odeslat" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Je nám líto, ale tento odkaz již není funkční." @@ -54,28 +54,28 @@ msgstr "sdílení je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 3b54400bc0..acce036625 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,44 +29,10 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "provést obnovu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trvale odstranit soubor" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Trvale odstranit" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Název" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Smazáno" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n adresář" -msgstr[1] "%n adresáře" -msgstr[2] "%n adresářů" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n soubor" -msgstr[1] "%n soubory" -msgstr[2] "%n souborů" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnoveno" @@ -75,11 +41,19 @@ msgstr "obnoveno" msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Název" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Smazáno" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Smazat" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9d29eb9ed8..20c66f1e24 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -372,14 +372,18 @@ msgid "" msgstr "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapování uživatelských jmen z LDAPu" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -393,18 +397,18 @@ msgid "" "experimental stage." msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušit mapování uživatelských jmen LDAPu" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušit mapování názvů skupin LDAPu" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Vyzkoušet nastavení" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Nápověda" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 11970a0b13..6cd3991b20 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Cyfrinair" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Cyflwyno" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 69f8f97c37..8013ebc0fa 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,46 +27,10 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "gweithrediad adfer" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Gwall" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dileu ffeil yn barhaol" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Dileu'n barhaol" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Enw" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Wedi dileu" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Enw" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Adfer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Wedi dileu" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Dileu" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 35fee08310..0cceee2963 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Cymorth" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index d5bee700f1..5d390ef79e 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodeordet er forkert. Prøv igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodeord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desværre, dette link ser ikke ud til at fungerer længere." @@ -54,28 +54,28 @@ msgstr "deling er deaktiveret" msgid "For more info, please ask the person who sent this link." msgstr "For yderligere information, kontakt venligst personen der sendte linket. " -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 0e92e10c11..1b3a070ced 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: claus_chr \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,42 +29,10 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "udfør gendannelsesoperation" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fejl" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slet fil permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slet permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Gendannet" @@ -73,11 +41,19 @@ msgstr "Gendannet" msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Gendan" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Slet" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index a07b2cbf1c..017dab47c3 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test Konfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjælp" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index ad1e84807e..7b895e465e 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Absenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -55,28 +55,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index f1cfe7ba75..c0cb7c8ca6 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,42 +28,10 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -72,11 +40,19 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, der Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Name" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "gelöscht" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a1ea921884..c2cb2d8d14 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -372,14 +372,18 @@ msgid "" msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -393,18 +397,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 4e09271a0b..3d9319183c 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index a05dc1411b..9f2eb2716b 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index affcff22fb..f0ccd0d18f 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 8616c16eb6..d4bb900455 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -56,28 +56,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 2682be087d..0f68a05e2a 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,42 +30,10 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Datei" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -74,11 +42,19 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Name" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 203b73cdf5..7c509f7224 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -376,14 +376,18 @@ msgid "" msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -397,18 +401,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index efed1ad727..48508e7169 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -55,28 +55,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 0f2bea5612..3b16695d14 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,42 +29,10 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Dateien" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -73,11 +41,19 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Name" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 659a5d690a..7b98561da3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -374,14 +374,18 @@ msgid "" msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -395,18 +399,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 7185b97f85..716a96b395 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Συνθηματικό" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Καταχώρηση" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια." @@ -54,28 +54,28 @@ msgstr "ο διαμοιρασμός απενεργοποιήθηκε" msgid "For more info, please ask the person who sent this link." msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Λήψη" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e70d238939..f07c85f81c 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "Αδύνατη η μόνιμη διαγραφή του %s" msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "εκτέλεση λειτουργία επαναφοράς" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Σφάλμα" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "μόνιμη διαγραφή αρχείου" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Μόνιμη διαγραφή" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Όνομα" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Διαγράφηκε" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n φάκελοι" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n αρχεία" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "έγινε επαναφορά" @@ -72,11 +40,19 @@ msgstr "έγινε επαναφορά" msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Όνομα" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Διαγράφηκε" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 1385bd0c12..4d916b51c6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Δοκιμαστικες ρυθμισεις" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Βοήθεια" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4663eb6962..373e6b706f 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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Secret Code" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index c64e4f7a6a..416897b2d2 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 22391f10ba..49dd166b04 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 46d4619720..d1b828b6c5 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 13:20+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "%s shared \"%s\" with you" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Couldn't send mail to following users: %s " #: ajax/share.php:327 msgid "group" @@ -419,7 +419,7 @@ msgstr "Unshare" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "notify user by email" #: js/share.js:361 msgid "can edit" @@ -549,7 +549,7 @@ msgstr "Personal" msgid "Users" msgstr "Users" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Apps" @@ -577,18 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "The share will expire on %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Cheers!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -685,14 +685,14 @@ msgstr "Finish setup" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Finishing …" -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is available. Get more information on how to update." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Log out" @@ -712,11 +712,11 @@ msgstr "Please change your password to secure your account again." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Server side authentication failed!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Please contact your administrator." #: templates/login.php:38 msgid "Lost your password?" @@ -739,12 +739,12 @@ msgstr "Alternative Logins" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Hey there,

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

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "The share will expire on %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index e65d6cb248..a3b14c2580 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 13:20+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,36 +91,36 @@ msgstr "Invalid directory." msgid "Files" msgstr "Files" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Unable to upload {filename} as it is a directory or has 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Not enough space available" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL cannot be empty." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -132,7 +132,7 @@ msgstr "Share" msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Rename" @@ -164,13 +164,13 @@ msgstr "replaced {new_name} with {old_name}" msgid "undo" msgstr "undo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" @@ -212,14 +212,14 @@ msgstr "Your storage is almost full ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." #: js/files.js:76 msgid "" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Error moving file" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "Name" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "Size" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "Modified" @@ -306,49 +306,49 @@ msgstr "Folder" msgid "From link" msgstr "From link" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "You don’t have write permission here." -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "Download" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "Unshare" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "Delete" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index 1354eff62b..8a138b4825 100644 --- a/l10n/en_GB/files_encryption.po +++ b/l10n/en_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 13:30+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +59,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app." #: files/error.php:12 msgid "" @@ -90,7 +90,7 @@ msgstr "Saving..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Go directly to your " #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -111,7 +111,7 @@ msgstr "Recovery key password" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repeat recovery key password" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -127,15 +127,15 @@ msgstr "Change recovery key password:" #: templates/settings-admin.php:43 msgid "Old Recovery key password" -msgstr "Old Recovery key password" +msgstr "Old recovery key password" #: templates/settings-admin.php:50 msgid "New Recovery key password" -msgstr "New Recovery key password" +msgstr "New recovery key password" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repeat new recovery key password" #: templates/settings-admin.php:61 msgid "Change Password" @@ -143,7 +143,7 @@ msgstr "Change Password" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "Your private key password no longer match your login password:" +msgstr "Your private key password no longer matches your login password:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index a0f4b32037..2f9fc3ffba 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/files_sharing.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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:46+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "The password is wrong. Try again." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, this link doesn’t seem to work anymore." @@ -54,28 +54,28 @@ msgstr "sharing is disabled" msgid "For more info, please ask the person who sent this link." msgstr "For more info, please ask the person who sent this link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index d32064c181..ce11b681d4 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Couldn't delete %s permanently" msgid "Couldn't restore %s" msgstr "Couldn't restore %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "perform restore operation" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "delete file permanently" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Delete permanently" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Deleted" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n folder" -msgstr[1] "%n folders" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n files" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restored" @@ -72,11 +40,19 @@ msgstr "restored" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nothing in here. Your recycle bin is empty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Name" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restore" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Deleted" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Delete" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 2afc895a38..34fd3ee9bd 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 13:20+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,32 +182,32 @@ msgstr "undo" msgid "Unable to remove user" msgstr "Unable to remove user" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groups" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Group Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Delete" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "add group" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error creating user" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "A valid password must be provided" @@ -343,11 +343,11 @@ msgstr "Allow users to only share with users in their groups" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Allow mail notification" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Allow user to send mail notification for shared files" #: templates/admin.php:178 msgid "Security" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index d525130a2e..7fe9b8147f 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously 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." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribute:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Username-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from 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. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Clear Username-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Clear Groupname-LDAP Group Mapping" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test Configuration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Help" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index cc9cb10772..3a9a67cd81 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasvorto" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sendi" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index cb45265ca8..5d90fbd525 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eraro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Forigi por ĉiam" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nomo" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nomo" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Forigi" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 84547fe20e..33dc3c7692 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Provi agordon" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Helpo" diff --git a/l10n/es/core.po b/l10n/es/core.po index 93b7aa4475..80f19b96a1 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 16:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "%s ha compatido »%s« contigo" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "No se pudo enviar mensajes a los siguientes usuarios: %s" #: ajax/share.php:327 msgid "group" @@ -428,7 +428,7 @@ msgstr "Dejar de compartir" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "notificar al usuario por correo electrónico" #: js/share.js:361 msgid "can edit" @@ -558,7 +558,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Aplicaciones" @@ -586,18 +586,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "El objeto dejará de ser compartido el %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "¡Saludos!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -694,14 +694,14 @@ msgstr "Completar la instalación" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Finalizando..." -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Salir" @@ -721,11 +721,11 @@ msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "La autenticación a fallado en el servidor." #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Sírvase contactar a su administrador." #: templates/login.php:38 msgid "Lost your password?" @@ -748,12 +748,12 @@ msgstr "Inicios de sesión alternativos" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "El objeto dejará de ser compartido el %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/es/files.po b/l10n/es/files.po index 14e84c9373..47d72767d5 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# japaol , 2013 # mikelanabitarte , 2013 # qdneren , 2013 # Korrosivo , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-10 10:10+0000\n" +"Last-Translator: japaol \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" @@ -96,36 +97,36 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora cancelará la subida." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -137,7 +138,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renombrar" @@ -169,13 +170,13 @@ msgstr "reemplazado {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -217,14 +218,14 @@ msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados." #: js/files.js:76 msgid "" @@ -232,25 +233,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "Nombre" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "Tamaño" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "Modificado" @@ -311,49 +312,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "Descargar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 7638a18810..3cf197b6af 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,6 +6,7 @@ # Art O. Pal , 2013 # asaez , 2013 # gmoriello , 2013 +# japaol , 2013 # mikelanabitarte , 2013 # Korrosivo , 2013 # saskarip , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" -"PO-Revision-Date: 2013-10-07 16:10+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 22:50+0000\n" +"Last-Translator: japaol \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" @@ -66,7 +67,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App." #: files/error.php:12 msgid "" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 26442ede40..d027ef55b7 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-13 23:50+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vaya, este enlace parece que no volverá a funcionar." @@ -55,28 +55,28 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 375095a68b..b9a630d04a 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,42 +29,10 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminar archivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n carpeta" -msgstr[1] "%n carpetas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" @@ -73,11 +41,19 @@ msgstr "recuperado" msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a6d1816d4c..5998f85831 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -7,6 +7,7 @@ # asaez , 2013 # eadeprado , 2013 # ggam , 2013 +# japaol , 2013 # pablomillaquen , 2013 # qdneren , 2013 # Korrosivo , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 22:40+0000\n" +"Last-Translator: japaol \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" @@ -190,32 +191,32 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "No se puede eliminar el usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrador del Grupo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "añadir Grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña valida" @@ -351,11 +352,11 @@ msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificaciones por email" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir al usuario enviar notificaciones por email de archivos compartidos" #: templates/admin.php:178 msgid "Security" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9b772412ce..1a76432405 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -373,14 +373,18 @@ msgid "" msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -394,18 +398,18 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Configuración de prueba" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ayuda" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index cea65819e7..c1307a7e9e 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña no es correcta. Probá de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Perdón, este enlace parece no funcionar más." @@ -54,28 +54,28 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contactá a la persona que te mandó el enlace." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index abcc1f3e13..d9a1857ffa 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "No fue posible borrar %s de manera permanente" msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Borrar archivo de manera permanente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Borrar de manera permanente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Borrado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n directorio" -msgstr[1] "%n directorios" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" @@ -72,11 +40,19 @@ msgstr "recuperado" msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Borrado" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index e6e91d2f16..2bc3684a80 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea ú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 mapeados (agregados)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Probar configuración" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ayuda" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index 3cce6ac339..0accae637b 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 42fb8a7b1f..c9ff11a354 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 54dc1b5192..477199e213 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index aadb8d89be..bd9696dfa2 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 11:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -291,7 +291,7 @@ msgstr "Milliseid faile sa soovid alles hoida?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -311,7 +311,7 @@ msgstr "({count} valitud)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Viga faili olemasolu malli laadimisel" #: 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 @@ -550,7 +550,7 @@ msgstr "Isiklik" msgid "Users" msgstr "Kasutajad" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Rakendused" @@ -688,12 +688,12 @@ msgstr "Lõpeta seadistamine" msgid "Finishing …" msgstr "Lõpetamine ..." -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Logi välja" @@ -713,11 +713,11 @@ msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Serveripoolne autentimine ebaõnnestus!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Palun kontakteeru oma süsteemihalduriga." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index c0e88cd6cb..e339d96ed0 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 11:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,36 +92,36 @@ msgstr "Vigane kaust." msgid "Files" msgstr "Failid" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Pole piisavalt ruumi" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Viga" @@ -133,7 +133,7 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Nimeta ümber" @@ -165,13 +165,13 @@ msgstr "asendas nime {old_name} nimega {new_name}" msgid "undo" msgstr "tagasi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" @@ -213,14 +213,14 @@ msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele." #: js/files.js:76 msgid "" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Viga faili eemaldamisel" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "Nimi" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "Suurus" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "Muudetud" @@ -307,49 +307,49 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "Lae alla" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 7d195812ab..e3f9cab0e4 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 11:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit." #: files/error.php:12 msgid "" @@ -91,7 +91,7 @@ msgstr "Salvestamine..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Liigu otse oma" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -112,7 +112,7 @@ msgstr "Taastevõtme parool" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Korda taastevõtme parooli" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -136,7 +136,7 @@ msgstr "Uus taastevõtme parool" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Korda uut taastevõtme parooli" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 358fc25d35..6c8f069f72 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:48+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parool on vale. Proovi uuesti." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parool" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Saada" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vabandust, see link ei tundu enam toimivat." @@ -55,28 +55,28 @@ msgstr "jagamine on peatatud" msgid "For more info, please ask the person who sent this link." msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lae alla" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 7029036801..41687c7e60 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:46+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "soorita taastamine" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Viga" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "kustuta fail jäädavalt" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Kustuta jäädavalt" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Kustutatud" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n kataloogi" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fail" -msgstr[1] "%n faili" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "taastatud" @@ -72,11 +40,19 @@ msgstr "taastatud" msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Taasta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Kustutatud" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8f617c04fd..f8762ee4e3 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribuut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Puhasta LDAP-Grupinimi Grupp Vastendus" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testi seadistust" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Abiinfo" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index ce629410a6..ab7750234f 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Pasahitza ez da egokia. Saiatu berriro." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasahitza" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bidali" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Barkatu, lotura ez dirudi eskuragarria dagoenik." @@ -54,28 +54,28 @@ msgstr "elkarbanatzea ez dago gaituta" msgid "For more info, please ask the person who sent this link." msgstr "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Igo" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 1daada3771..e671b30f70 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "berreskuratu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errorea" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ezabatu fitxategia betirako" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Ezabatu betirako" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Izena" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Ezabatuta" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "karpeta %n" -msgstr[1] "%n karpeta" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "fitxategi %n" -msgstr[1] "%n fitxategi" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Berrezarrita" @@ -72,11 +40,19 @@ msgstr "Berrezarrita" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Izena" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Ezabatuta" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index e54163f03b..2ee5871f0b 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Egiaztatu Konfigurazioa" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Laguntza" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 14a3c4edfa..b74820ae6b 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "رمزعبور اشتباه می باشد. دوباره امتحان کنید." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "گذرواژه" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ثبت" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "دانلود" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 28c2687c75..8e79601363 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "انجام عمل بازگرداندن" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطا" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "حذف فایل برای همیشه" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "حذف قطعی" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "نام" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "حذف شده" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "نام" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "حذف شده" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "حذف" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index a17c036013..33285ec609 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "صفت UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "نام کاربری - نگاشت کاربر LDAP " -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "امتحان پیکربندی" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "راه‌نما" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index a2ffb0fc82..4d0e6a0253 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Väärä salasana. Yritä uudelleen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Salasana" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Lähetä" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Valitettavasti linkki ei vaikuta enää toimivan." @@ -54,28 +54,28 @@ msgstr "jakaminen on poistettu käytöstä" msgid "For more info, please ask the person who sent this link." msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lataa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 38def67d24..165313c167 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "suorita palautustoiminto" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Virhe" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "poista tiedosto pysyvästi" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Poista pysyvästi" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Poistettu" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n kansio" -msgstr[1] "%n kansiota" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n tiedosto" -msgstr[1] "%n tiedostoa" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "palautettu" @@ -72,11 +40,19 @@ msgstr "palautettu" msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Palauta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Poistettu" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Poista" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 3b7670dea6..6dd0d9dd22 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ohje" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 911dcd114d..0f9d7d7c69 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -5,6 +5,7 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # msoko , 2013 # ogre_sympathique , 2013 # plachance , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 22:40+0000\n" +"Last-Translator: etiess \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" @@ -31,7 +32,7 @@ msgstr "%s partagé »%s« avec vous" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" #: ajax/share.php:327 msgid "group" @@ -424,7 +425,7 @@ msgstr "Ne plus partager" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "Prévenir l'utilisateur par couriel" #: js/share.js:361 msgid "can edit" @@ -554,7 +555,7 @@ msgstr "Personnel" msgid "Users" msgstr "Utilisateurs" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Applications" @@ -582,18 +583,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Le partage expire le %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Salutations!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -690,14 +691,14 @@ msgstr "Terminer l'installation" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "En cours de finalisation..." -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Se déconnecter" @@ -717,11 +718,11 @@ msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre com #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "L'authentification côté serveur a échoué !" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Veuillez contacter votre administrateur." #: templates/login.php:38 msgid "Lost your password?" @@ -744,12 +745,12 @@ msgstr "Logins alternatifs" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Bonjour,

    Juste pour vous informer que %s a partagé »%s« avec vous.
    Consultez-le !

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Le partage expirera le %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c76c180c26..37f6bc2f23 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 20:50+0000\n" +"Last-Translator: ogre_sympathique \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" @@ -94,36 +94,36 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erreur" @@ -135,7 +135,7 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renommer" @@ -167,13 +167,13 @@ msgstr "{new_name} a été remplacé par {old_name}" msgid "undo" msgstr "annuler" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" @@ -215,14 +215,14 @@ msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez 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 chiffrés." #: js/files.js:76 msgid "" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "Nom" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "Taille" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "Modifié" @@ -309,49 +309,49 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "Télécharger" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index c9033cf761..b9478ec67c 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -5,15 +5,17 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # froozeify , 2013 # lyly95, 2013 +# ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 22:40+0000\n" +"Last-Translator: etiess \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" @@ -62,7 +64,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement." #: files/error.php:12 msgid "" @@ -93,7 +95,7 @@ msgstr "Enregistrement..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Allez directement à votre" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -114,7 +116,7 @@ msgstr "Mot de passe de la clef de récupération" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Répétez le mot de passe de la clé de récupération" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -138,7 +140,7 @@ msgstr "Nouveau mot de passe de la clef de récupération" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Répétez le nouveau mot de passe de la clé de récupération" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3e69326d28..120f33f29f 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-04 14:11+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Le mot de passe est incorrect. Veuillez réessayer." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Mot de passe" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envoyer" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Désolé, mais le lien semble ne plus fonctionner." @@ -55,28 +55,28 @@ msgstr "le partage est désactivé" msgid "For more info, please ask the person who sent this link." msgstr "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Télécharger" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 599cfe1a8e..81cd7cf758 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Impossible d'effacer %s de façon permanente" msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "effectuer l'opération de restauration" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erreur" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "effacer définitivement le fichier" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Supprimer de façon définitive" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Effacé" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n dossier" -msgstr[1] "%n dossiers" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fichier" -msgstr[1] "%n fichiers" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restauré" @@ -72,11 +40,19 @@ msgstr "restauré" msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Effacé" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 685dbd3e18..6a71ee8534 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 20:50+0000\n" +"Last-Translator: ogre_sympathique \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" @@ -187,32 +187,32 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groupes" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Supprimer" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" @@ -348,11 +348,11 @@ msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur gro #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Autoriser les notifications par couriel" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" #: templates/admin.php:178 msgid "Security" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 679f44b182..a560baa82d 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attribut UUID :" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Association Nom d'utilisateur-Utilisateur LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Supprimer l'association utilisateur interne-utilisateur LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Supprimer l'association nom de groupe-groupe LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Tester la configuration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Aide" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index bd0b79c5d8..2b0bcad010 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "O contrasinal é incorrecto. Ténteo de novo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasinal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Semella que esta ligazón non funciona." @@ -54,28 +54,28 @@ msgstr "foi desactivada a compartición" msgid "For more info, please ask the person who sent this link." msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Enviar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 7250668c4f..a17a5e913a 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "realizar a operación de restauración" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminar o ficheiro permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartafol" -msgstr[1] "%n cartafoles" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" @@ -72,11 +40,19 @@ msgstr "restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 7806b1d62c..7b7589add6 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo do UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar a asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar a asignación do grupo ao «nome de grupo LDAP»" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Probar a configuración" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Axuda" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index c181aa3c1e..fcf68d795f 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "סיסמא" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "שליחה" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "הורדה" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "העלאה" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index ebdf6f4150..6a48277fc2 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ביצוע פעולת שחזור" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "שגיאה" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "מחיקת קובץ לצמיתות" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "מחיקה לצמיתות" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "שם" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "נמחק" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +40,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "שם" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "שחזור" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "נמחק" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 00811e8330..0c58cc77ef 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "עזרה" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 546e758e1c..327920b444 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "पासवर्ड" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "अपलोड " -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index a67189f46b..64da02cb00 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "त्रुटि" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 132e022bcf..6bfd82488c 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "सहयोग" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 308e9e9875..ba1345eed1 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 09cacae10d..ce968dadfc 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,44 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f46f868f8d..196fcf86bc 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoć" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index ae03dc98f2..696a897c9b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "A megadott jelszó nem megfelelő. Próbálja újra!" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Jelszó" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Elküld" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sajnos úgy tűnik, ez a link már nem működik." @@ -54,28 +54,28 @@ msgstr "letiltásra került a megosztás" msgid "For more info, please ask the person who sent this link." msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Letöltés" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c669e0e026..4ebe1a9808 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "Nem sikerült %s végleges törlése" msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "a visszaállítás végrehajtása" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hiba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "az állomány végleges törlése" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Végleges törlés" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Név" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Törölve" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mappa" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n állomány" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "visszaállítva" @@ -72,11 +40,19 @@ msgstr "visszaállítva" msgid "Nothing in here. Your trash bin is empty!" msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Név" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Visszaállítás" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Törölve" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 28f2518468..ccb187664d 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID attribútum:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Felhasználó - LDAP felhasználó hozzárendelés" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "A felhasználó - LDAP felhasználó hozzárendelés törlése" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "A csoport - LDAP csoport hozzárendelés törlése" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "A beállítások tesztelése" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Súgó" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index bdb47a3fbc..d920785be6 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,16 +18,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Հաստատել" +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b86cee6006..d129300c0e 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:38+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Ջնջել" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 8b2b904fe7..d0f033e8f2 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 83dfe3acf5..e3d9c8b0ef 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasigno" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submitter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Discargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Incargar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 41a8965d2d..807fa0a931 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nomine" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nomine" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Deler" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index c9c4e81d41..b7150a9f1f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Adjuta" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 2daa40bb0c..04c5fe53ae 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 17:20+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Sandi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Kirim" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Unduh" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Unggah" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 7e21000976..2e8b106cdd 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "Tidak dapat menghapus permanen %s" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "jalankan operasi pemulihan" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Galat" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "hapus berkas secara permanen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Hapus secara permanen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nama" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Dihapus" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Tempat sampah anda kosong!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nama" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Dihapus" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Hapus" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 3e22306396..b965f5e73d 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Uji Konfigurasi" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Bantuan" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index bfd1462e05..ab154f71f5 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lykilorð" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Senda" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 6088471926..d6b54e203e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Villa" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nafn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nafn" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Eyða" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index d98c32e3ff..05b3d5d6d5 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Prúfa uppsetningu" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjálp" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 01ae61c6ae..cb17b0d6a8 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La password è errata. Prova ancora." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Invia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Spiacenti, questo collegamento sembra non essere più attivo." @@ -55,28 +55,28 @@ msgstr "la condivisione è disabilitata" msgid "For more info, please ask the person who sent this link." msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Scarica" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carica" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index b6c4e7090d..c13d546549 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "esegui operazione di ripristino" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errore" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "elimina il file definitivamente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Elimina definitivamente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminati" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartella" -msgstr[1] "%n cartelle" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n file" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "ripristinati" @@ -72,11 +40,19 @@ msgstr "ripristinati" msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Eliminati" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Elimina" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 2c63238f98..f802734277 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Associazione Nome utente-Utente LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Cancella associazione Nome utente-Utente LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Cancella associazione Nome gruppo-Gruppo LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Prova configurazione" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Aiuto" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 71e37cb9fd..22cad8ec47 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "パスワードが間違っています。再試行してください。" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "パスワード" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送信" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "申し訳ございません。このリンクはもう利用できません。" @@ -54,28 +54,28 @@ msgstr "共有が無効になっています" msgid "For more info, please ask the person who sent this link." msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "アップロード" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index b865b55bdc..0ddc42354e 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,40 +29,10 @@ msgstr "%s を完全に削除出来ませんでした" msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "復元操作を実行する" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "エラー" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ファイルを完全に削除する" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "完全に削除する" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名前" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "削除済み" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n個のフォルダ" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n個のファイル" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "復元済" @@ -71,11 +41,19 @@ msgstr "復元済" msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "名前" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "復元" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "削除済み" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "削除" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 55f63dc243..cdc491119a 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピング" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピングをクリアする" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "グループ名とLDAPグループのマッピングをクリアする" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "設定をテスト" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ヘルプ" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index efd2890682..f7e5a8f518 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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 36d83d1478..fd709c4c61 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 44a23bfdf9..fa5681d79e 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "შველა" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index c53f232620..dfe7c72771 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "გაგზავნა" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index e7d9fa72e7..7a6810fb30 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "მიმდინარეობს აღდგენის ოპერაცია" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "შეცდომა" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ფაილის სრულად წაშლა" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "სრულად წაშლა" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "სახელი" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "წაშლილი" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "სახელი" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "წაშლილი" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "წაშლა" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 3f5f3173d5..4c74ff9ca9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "კავშირის ტესტირება" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "დახმარება" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index f12cf3ccbe..a8e71bbaae 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index f3aa613a53..da11ae02db 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index c6be8c9e68..bebbe6a2c2 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index b4ca534331..e933283838 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 4a8a4c3ae7..15941b3799 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 24c7a34325..65a7043e67 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index da94ad3211..8fd11b0586 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 10:14+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "비밀번호가 틀립니다. 다시 입력해주세요." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "암호" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "제출" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "죄송합니다만 이 링크는 더이상 작동되지 않습니다." @@ -54,28 +54,28 @@ msgstr "공유가 비활성되었습니다" msgid "For more info, please ask the person who sent this link." msgstr "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "다운로드" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "업로드" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4d9bdc7e48..901162cb12 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,40 +28,10 @@ msgstr "%s를 영구적으로 삭제할수 없습니다" msgid "Couldn't restore %s" msgstr "%s를 복원할수 없습니다" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "복원 작업중" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "오류" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "영구적으로 파일 삭제하기" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "영원히 삭제" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "이름" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "삭제됨" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "폴더 %n개" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "파일 %n개 " - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "복원됨" @@ -70,11 +40,19 @@ msgstr "복원됨" msgid "Nothing in here. Your trash bin is empty!" msgstr "현재 휴지통은 비어있습니다!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "이름" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "복원" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "삭제됨" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "삭제" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index fc5af73331..c763e21ebd 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "도움말" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index d1abf7c6c8..8dea101c00 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ناردن" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "داگرتن" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index c20783bf32..85e8f58d37 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "هه‌ڵه" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ناو" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "ناو" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 5fb4b95ffa..340611f80e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "یارمەتی" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 3fba12cda2..9b04cb82f4 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Den Passwuert ass incorrect. Probeier ed nach eng keier." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwuert" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Fortschécken" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Keeng Preview do fir" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 85486bdbf4..12c2da94f6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Numm" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Numm" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 9fa58faf2f..9dadffa0d6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hëllef" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1ce65e7a06..46715d4e97 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Netinka slaptažodis: Bandykite dar kartą." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Slaptažodis" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Išsaugoti" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Atleiskite, panašu, kad nuoroda yra neveiksni." @@ -55,28 +55,28 @@ msgstr "dalinimasis yra išjungtas" msgid "For more info, please ask the person who sent this link." msgstr "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 3f4887ea23..3e1f7188d2 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,44 +29,10 @@ msgstr "Nepavyko negrįžtamai ištrinti %s" msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "atkurti" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Klaida" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "failą ištrinti negrįžtamai" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Ištrinti negrįžtamai" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Pavadinimas" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Ištrinti" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n aplankų" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n failų" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atstatyta" @@ -75,11 +41,19 @@ msgstr "atstatyta" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Pavadinimas" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Ištrinti" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 4890efbe3b..e5393ac379 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atributas:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Naudotojo vardo - LDAP naudotojo sąsaja" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Išvalyti naudotojo vardo - LDAP naudotojo sąsają" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Bandyti konfigūraciją" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 036cfaf960..2284ca1c98 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Parole" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Iesniegt" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 8409f8c920..5792cb5d36 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: stendec \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,44 +28,10 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "veikt atjaunošanu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Kļūda" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dzēst datni pavisam" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Dzēst pavisam" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nosaukums" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Dzēsts" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "Nekas, %n mapes" -msgstr[1] "%n mape" -msgstr[2] "%n mapes" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "Neviens! %n faaili" -msgstr[1] "%n fails" -msgstr[2] "%n faili" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atjaunots" @@ -74,11 +40,19 @@ msgstr "atjaunots" msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nosaukums" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Dzēsts" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Dzēst" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 18c16618b6..c3b629b818 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testa konfigurācija" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Palīdzība" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 97b8547bc7..1c77aa4371 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Прати" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Преземи" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Подигни" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 7e028cbe6f..3d784eb247 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Име" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Избриши" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 63b1000bf6..fa9398edec 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помош" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index 088c381190..0924709dcb 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 42c24ca642..f75561f852 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index a7b06da528..c96aa269c6 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 67cf9aabfb..88f8f2364d 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Kata laluan" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Hantar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Muat turun" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index f65679fc8e..3e3725af5d 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Ralat" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nama" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nama" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Padam" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 2a6f3630a0..0b1daaf6b6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Bantuan" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 6b5c6c9769..90a3148373 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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "စကားဝှက်" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ထည့်သွင်းမည်" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 0611fe45b5..dee62ffcf4 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index b68d9912df..31381520c3 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "အကူအညီ" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 02cbd3e982..16310526a9 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er feil. Prøv på nytt." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send inn" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index a46fbd4272..776489133b 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,42 +28,10 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utfør gjenopprettings operasjon" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slett filer permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slett permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +40,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 6eb013d0b1..b97beddde9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjelp" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 8f745e77bb..a6f34cb330 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 06099b3a41..d733415ed4 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 823ea6ee1a..4c9595f78f 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 1acf14b329..a0aef310a4 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Wachtwoord ongeldig. Probeer het nogmaals." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Wachtwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Verzenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." @@ -55,28 +55,28 @@ msgstr "delen is uitgeschakeld" msgid "For more info, please ask the person who sent this link." msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Downloaden" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 83e0e68db8..fd439cf03a 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "uitvoeren restore operatie" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fout" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "verwijder bestanden definitief" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Verwijder definitief" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Naam" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Verwijderd" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n map" -msgstr[1] "%n mappen" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n bestand" -msgstr[1] "%n bestanden" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "hersteld" @@ -72,11 +40,19 @@ msgstr "hersteld" msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Naam" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Verwijderd" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Verwijder" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 6c69b504f8..01e4839105 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: kwillems \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -371,14 +371,18 @@ msgid "" msgstr "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribuut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Leegmaken Groepsnaam-LDAP groep vertaling" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test configuratie" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Help" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 4b5c1c4d3a..830be08d65 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er gale. Prøv igjen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Orsak, denne lenkja fungerer visst ikkje lenger." @@ -54,28 +54,28 @@ msgstr "deling er slått av" msgid "For more info, please ask the person who sent this link." msgstr "Spør den som sende deg lenkje om du vil ha meir informasjon." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 66efc5fddc..a88e34c958 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,42 +29,10 @@ msgstr "Klarte ikkje sletta %s for godt" msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utfør gjenoppretting" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slett fila for godt" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slett for godt" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Sletta" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "gjenoppretta" @@ -73,11 +41,19 @@ msgstr "gjenoppretta" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Sletta" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Slett" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 66ed7b6861..3f81d3a16a 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nqo/files_sharing.po b/l10n/nqo/files_sharing.po index 8c548248cf..b85ec335e2 100644 --- a/l10n/nqo/files_sharing.po +++ b/l10n/nqo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/nqo/files_trashbin.po b/l10n/nqo/files_trashbin.po index 8c737c0b75..69ea00584d 100644 --- a/l10n/nqo/files_trashbin.po +++ b/l10n/nqo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index d377705d79..e95cc82f5d 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index a94307e4bf..50f000cd08 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Senhal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sosmetre" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 6ac8f8fe28..9978295c0f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Escafa" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index d5c42bcf74..6a0fe02297 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index 5857f609be..1a46db8eb3 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:20+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ਅੱਪਲੋਡ" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index 2d8b4c38b7..b5dca330f6 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ਗਲਤੀ" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "ਹਟਾਓ" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index ca4f0b3e2c..28501d8f8e 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index fe247fbe19..93fc030756 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-10 11:40+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" @@ -99,7 +99,7 @@ msgstr "Błąd podczas usuwania %s z ulubionych." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Brak obrazu lub pliku dostarczonego" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -425,7 +425,7 @@ msgstr "Zatrzymaj współdzielenie" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "powiadom użytkownika przez email" #: js/share.js:361 msgid "can edit" @@ -555,7 +555,7 @@ msgstr "Osobiste" msgid "Users" msgstr "Użytkownicy" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Aplikacje" @@ -590,11 +590,11 @@ msgstr "" msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Udostępnienie wygaśnie w dniu %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Pozdrawiam!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -691,14 +691,14 @@ msgstr "Zakończ konfigurowanie" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Kończę ..." -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Wyloguj" @@ -718,11 +718,11 @@ msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Uwierzytelnianie po stronie serwera nie powiodło się!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Skontaktuj się z administratorem" #: templates/login.php:38 msgid "Lost your password?" @@ -745,12 +745,12 @@ msgstr "Alternatywne loginy" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Cześć,

    Informuję cię że %s udostępnia ci »%s«.\n
    Zobacz!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Udostępnienie wygaśnie w dniu %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index ccb7d03ca2..b13669fbc3 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-10 11:30+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" @@ -59,7 +59,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji." #: files/error.php:12 msgid "" @@ -90,7 +90,7 @@ msgstr "Zapisywanie..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Przejdź bezpośrednio do" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -111,7 +111,7 @@ msgstr "Hasło klucza odzyskiwania" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Powtórz hasło klucza odzyskiwania" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -135,7 +135,7 @@ msgstr "Nowe hasło klucza odzyskiwania" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Powtórz nowe hasło klucza odzyskiwania" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0598448aa8..c07378649d 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Hasło" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Wyślij" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." @@ -54,28 +54,28 @@ msgstr "Udostępnianie jest wyłączone" msgid "For more info, please ask the person who sent this link." msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Pobierz" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 7a774c7b78..254f37cba0 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,44 +28,10 @@ msgstr "Nie można trwale usunąć %s" msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "wykonywanie operacji przywracania" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Błąd" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trwale usuń plik" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Trwale usuń" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nazwa" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Usunięte" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n katalogów" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n plików" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "przywrócony" @@ -74,11 +40,19 @@ msgstr "przywrócony" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nazwa" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Usunięte" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 057209ec7d..6a3be9b037 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-10 11:50+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" @@ -183,32 +183,32 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupy" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Usuń" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" @@ -344,11 +344,11 @@ msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" #: templates/admin.php:178 msgid "Security" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index bc98ad8c4e..9f1f1fcb74 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atrybuty UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapowanie użytkownika LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Czyść Mapowanie użytkownika LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Czyść Mapowanie nazwy grupy LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Konfiguracja testowa" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoc" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 0c110ef825..5ecf8fe73b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Senha incorreta. Tente novamente." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Senha" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desculpe, este link parece não mais funcionar." @@ -54,28 +54,28 @@ msgstr "compartilhamento está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Baixar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 52e3fe9e13..c86485d45e 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Não foi possível excluir %s permanentemente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "realizar operação de restauração" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "excluir arquivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Excluir permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Excluído" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n pastas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n arquivo" -msgstr[1] "%n arquivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" @@ -72,11 +40,19 @@ msgstr "restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Excluído" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Excluir" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8893e2edde..3a04631d2f 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Usuário-LDAP Mapeamento de Usuário" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar Mapeamento de Usuário Nome de Usuário-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar NomedoGrupo-LDAP Mapeamento do Grupo" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Teste de Configuração" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c666456742..2f727047fb 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 18:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +79,7 @@ msgstr "Não há espaço suficiente em disco" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" @@ -93,36 +93,36 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erro" @@ -134,7 +134,7 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renomear" @@ -166,13 +166,13 @@ msgstr "substituido {new_name} por {old_name}" msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Erro ao mover o ficheiro" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "Nome" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "Tamanho" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "Modificado" @@ -308,49 +308,49 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "Transferir" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index d3d1dddf32..5e9af1fe5f 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -4,15 +4,16 @@ # # Translators: # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # moura232 , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 18:00+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +85,7 @@ msgstr "" #: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Os utilizadores seguintes não estão marcados para cifragem:" #: js/settings-admin.js:13 msgid "Saving..." diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 7db55d8e76..007a73ccd8 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Password errada, por favor tente de novo" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desculpe, mas este link parece não estar a funcionar." @@ -55,28 +55,28 @@ msgstr "A partilha está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Transferir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carregar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 8b46018dda..8ac67966c2 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Não foi possível eliminar %s de forma permanente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "executar a operação de restauro" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Eliminar permanentemente o(s) ficheiro(s)" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Apagado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n pasta" -msgstr[1] "%n pastas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Restaurado" @@ -72,11 +40,19 @@ msgstr "Restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Apagado" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index a33b04b63e..b6b6fdc0a1 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 18:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" -msgstr "" +msgstr "O nome da aplicação não foi especificado" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ajuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Pessoal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configurações" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Utilizadores" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -112,7 +112,7 @@ msgstr "" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arquivos do tipo %s não são suportados" #: private/installer.php:103 msgid "Failed to open archive when installing app" @@ -120,11 +120,11 @@ msgstr "" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "A aplicação não disponibiliza um ficheiro info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação" #: private/installer.php:140 msgid "" @@ -146,12 +146,12 @@ msgstr "" #: private/installer.php:162 msgid "App directory already exists" -msgstr "" +msgstr "A directoria da aplicação já existe" #: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s" #: private/json.php:28 msgid "Application is not enabled" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index c2dd657006..a9e185d760 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -5,15 +5,16 @@ # Translators: # bmgmatias , 2013 # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # Helder Meneses , 2013 # Nelson Rosado , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 17:50+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,22 +91,22 @@ msgstr "Não foi possível actualizar a aplicação." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Password errada" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Nenhum utilizador especificado." #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo." #: changepassword/controller.php:87 msgid "" @@ -115,7 +116,7 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Não foi possível alterar a sua password" #: js/apps.js:43 msgid "Update to {appversion}" @@ -163,7 +164,7 @@ msgstr "Actualizado" #: js/personal.js:225 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccione uma fotografia de perfil" #: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." @@ -185,32 +186,32 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" @@ -346,11 +347,11 @@ msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu g #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificação por email" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" #: templates/admin.php:178 msgid "Security" @@ -505,19 +506,19 @@ msgstr "Foto do perfil" #: templates/personal.php:90 msgid "Upload new" -msgstr "" +msgstr "Carregar novo" #: templates/personal.php:92 msgid "Select new from Files" -msgstr "" +msgstr "Seleccionar novo a partir dos ficheiros" #: templates/personal.php:93 msgid "Remove image" -msgstr "" +msgstr "Remover imagem" #: templates/personal.php:94 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois." #: templates/personal.php:97 msgid "Abort" @@ -525,7 +526,7 @@ msgstr "Abortar" #: templates/personal.php:98 msgid "Choose as profile image" -msgstr "" +msgstr "Escolha uma fotografia de perfil" #: templates/personal.php:106 templates/personal.php:107 msgid "Language" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index b8a52a7e0e..304a64da09 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -371,14 +371,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapeamento do utilizador LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar mapeamento do utilizador-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar o mapeamento do nome de grupo LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testar a configuração" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index e0a966d6e0..780d4a0405 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parola este incorectă. Încercaţi din nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parolă" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Trimite" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descarcă" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index e8bdca36ee..28f35cd800 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,44 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eroare" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Stergere permanenta" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nume" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n directoare" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n fișiere" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Nume" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 239ee5cccc..01f2787f6b 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajutor" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 13ded27e56..6c39761230 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Неверный пароль. Попробуйте еще раз." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Отправить" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "К сожалению, эта ссылка, похоже не будет работать больше." @@ -55,28 +55,28 @@ msgstr "обмен отключен" msgid "For more info, please ask the person who sent this link." msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Скачать" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 093a2f1502..168ee1bd7d 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,44 +28,10 @@ msgstr "%s не может быть удалён навсегда" msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "выполнить операцию восстановления" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Ошибка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "удалить файл навсегда" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Удалено навсегда" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Имя" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Удалён" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n папок" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n файлов" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "восстановлен" @@ -74,11 +40,19 @@ msgstr "восстановлен" msgid "Nothing in here. Your trash bin is empty!" msgstr "Здесь ничего нет. Ваша корзина пуста!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Имя" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Восстановить" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Удалён" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Удалить" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c89b78bf54..fa2d45416f 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: jekader \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -373,14 +373,18 @@ msgid "" msgstr "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Аттрибут для UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Соответствия Имя-Пользователь LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -394,18 +398,18 @@ msgid "" "experimental stage." msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Очистить соответствия Имя-Пользователь LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Очистить соответствия Группа-Группа LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Тестовая конфигурация" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помощь" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c09a00ba70..801702da65 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "මුර පදය" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "යොමු කරන්න" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "බාන්න" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 8ad799d100..4e6567f2cb 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "දෝෂයක්" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "නම" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "නම" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "මකා දමන්න" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 406b5ccaa2..d8967e9b4e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "උදව්" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 42e2cda81b..2b6bf714e3 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/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-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 322a3dbd56..a6f8e0f6fa 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -27,45 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 0c3d5db2fe..41f780a1d4 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 8d7b07737f..d011dccc3d 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo je chybné. Skúste to znova." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odoslať" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "To je nepríjemné, ale tento odkaz už nie je funkčný." @@ -54,28 +54,28 @@ msgstr "zdieľanie je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index ba114deddf..80355c8b6d 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,44 +28,10 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "vykonať obnovu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trvalo zmazať súbor" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Zmazať trvalo" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Názov" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Zmazané" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n priečinok" -msgstr[1] "%n priečinky" -msgstr[2] "%n priečinkov" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n súbor" -msgstr[1] "%n súbory" -msgstr[2] "%n súborov" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnovené" @@ -74,11 +40,19 @@ msgstr "obnovené" msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Názov" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Zmazané" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Zmazať" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 490bc7b44c..8e4e92b4dc 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: martin\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribút:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapovanie názvov LDAP používateľských mien" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušiť mapovanie LDAP používateľských mien" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušiť mapovanie názvov LDAP skupín" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test nastavenia" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoc" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index b038230f56..1aa6dfa7fc 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Geslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošlji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Prejmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 284bba9884..a1311a4aa1 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,46 +27,10 @@ msgstr "Datoteke %s ni mogoče dokončno izbrisati." msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "izvedi opravilo obnavljanja" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Napaka" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dokončno izbriši datoteko" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Izbriši dokončno" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Izbrisano" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Izbrisano" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 95dd8e04af..bb2dbec1b0 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Preslikava uporabniško ime - LDAP-uporabnik" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Izbriši preslikavo Skupine in LDAP-skupine" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Preizkusne nastavitve" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoč" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index e1a91f7789..240161ccc6 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodi është i gabuar. Provojeni përsëri." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Parashtro" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më." @@ -54,28 +54,28 @@ msgstr "ndarja është çaktivizuar" msgid "For more info, please ask the person who sent this link." msgstr "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Shkarko" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index ba9832da5b..1c26765b61 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "Nuk munda ta eliminoj përfundimisht %s" msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ekzekuto operacionin e rivendosjes" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Veprim i gabuar" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminoje përfundimisht skedarin" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Elimino përfundimisht" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Emri" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminuar" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n dosje" -msgstr[1] "%n dosje" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n skedar" -msgstr[1] "%n skedarë" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "rivendosur" @@ -72,11 +40,19 @@ msgstr "rivendosur" msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Emri" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Eliminuar" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Elimino" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 0c630054e0..a93185b525 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ndihmë" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index db4a7eeb22..6f6e7571af 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Пошаљи" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Преузми" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 3d3a324b2b..323c0428f8 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,44 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "врати у претходно стање" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Обриши за стално" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Обрисано" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Име" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Врати" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Обрисано" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 7949578324..7838f709e1 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помоћ" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 875bfffa7f..21aa02106f 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index f4cf46e9bc..f416012ff6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,44 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 4280b44559..6627168bd4 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoć" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 2716b5f204..d591ac2499 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Lösenordet är fel. Försök igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Lösenord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Skicka" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Tyvärr, denna länk verkar inte fungera längre." @@ -55,28 +55,28 @@ msgstr "delning är inaktiverat" msgid "For more info, please ask the person who sent this link." msgstr "För mer information, kontakta den person som skickade den här länken." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 7116eb647a..99829fc700 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,42 +29,10 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utför återställning" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fel" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "radera filen permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Radera permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Raderad" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mapp" -msgstr[1] "%n mappar" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "återställd" @@ -73,11 +41,19 @@ msgstr "återställd" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Raderad" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Radera" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index a59b02df0f..5ab40729a9 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -371,14 +371,18 @@ msgid "" msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Användarnamn-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Rensa Användarnamn-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Rensa Gruppnamn-LDAP Group Mapping" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testa konfigurationen" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjälp" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 0cf4663cb9..ce2e4e932a 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 3edc43234c..c05cce48de 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index e51b2fcb6f..73c0557efa 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 73a4ffdeae..b832787803 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "சமர்ப்பிக்குக" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 937d88eaa1..36891b9106 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "வழு" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "பெயர்" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "பெயர்" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "நீக்குக" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 3b2312317a..4fa01f7f62 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "உதவி" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 3e0c6d0174..cd51394df1 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "సంకేతపదం" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a96a83e98d..4cf7c03680 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "పొరపాటు" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "శాశ్వతంగా తొలగించు" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "పేరు" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "పేరు" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "తొలగించు" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 90eb60be58..59679207ef 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "సహాయం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index abc217e840..516987f1d9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -549,7 +549,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "" @@ -687,12 +687,12 @@ msgstr "" msgid "Finishing …" msgstr "" -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 55994f472e..75411468e0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:17-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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 4d1d6082ad..b9d5f0aca2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:18-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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 63ca02e1ce..571e8644a9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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 f9243675ac..ca3e4dd116 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,15 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:16 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:19 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:27 templates/public.php:93 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:44 templates/public.php:47 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:57 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:90 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index a18bdeebff..90bb43d8a8 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/delete.php:42 #, php-format @@ -28,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index d9c63462a0..0891349707 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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 c0fc8d680b..67ec65b019 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:21-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 58342afc80..5231f134c8 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:22-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:237 +#: app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:248 +#: app.php:254 msgid "No app name specified" msgstr "" -#: app.php:352 +#: app.php:359 msgid "Help" msgstr "" -#: app.php:365 +#: app.php:372 msgid "Personal" msgstr "" -#: app.php:376 +#: app.php:383 msgid "Settings" msgstr "" -#: app.php:388 +#: app.php:395 msgid "Users" msgstr "" -#: app.php:401 +#: app.php:408 msgid "Admin" msgstr "" -#: app.php:832 +#: app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b52101627c..880b0c751f 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:22-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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 ee5c4a8361..aab287cd7c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -366,14 +366,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -387,18 +391,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3765664815..55e4fd7363 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\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/files_sharing.po b/l10n/th_TH/files_sharing.po index 467e3de3d8..7049133ac0 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "รหัสผ่าน" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ส่ง" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c54132eb76..c349231cc3 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ดำเนินการคืนค่า" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ชื่อ" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "ลบแล้ว" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "ชื่อ" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "ลบแล้ว" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "ลบ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f59f5c8333..e5b9f4bd3e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ช่วยเหลือ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 6ba5e5d6be..7eb52de639 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 21:50+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" @@ -104,11 +104,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -551,7 +551,7 @@ msgstr "Kişisel" msgid "Users" msgstr "Kullanıcılar" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Uygulamalar" @@ -689,12 +689,12 @@ msgstr "Kurulumu tamamla" msgid "Finishing …" msgstr "" -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Çıkış yap" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index eea57d4dbd..24c29df717 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Parola" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Gönder" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "İndir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Yükle" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 431d26bfe7..fde740bdd3 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: tridinebandim\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,42 +28,10 @@ msgstr "%s Kalıcı olarak silinemedi" msgid "Couldn't restore %s" msgstr "%s Geri yüklenemedi" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Geri yükleme işlemini gerçekleştir" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hata" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Dosyayı kalıcı olarak sil" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Kalıcı olarak sil" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "İsim" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Silindi" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n dizin" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n dosya" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "geri yüklendi" @@ -72,11 +40,19 @@ msgstr "geri yüklendi" msgid "Nothing in here. Your trash bin is empty!" msgstr "Burası boş. Çöp kutun tamamen boş." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "İsim" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Silindi" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Sil" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 6a247032c2..3d7178c5ba 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Caner BAŞARAN , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 21:50+0000\n" +"Last-Translator: Caner BAŞARAN \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,53 +20,53 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Yardım" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Kişisel" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Ayarlar" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Kullanıcılar" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Yönetici" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." #: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Hala özel profil resminiz şifreleme ile çalışmıyor" #: private/avatar.php:64 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 34a5b99bd6..1b8fd4c219 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Yardım" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b1dd5be964..fbfd33fa79 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "ئىم" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "تاپشۇر" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 103286687b..43620ad0c2 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,40 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خاتالىق" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "مەڭگۈلۈك ئۆچۈر" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ئاتى" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "ئۆچۈرۈلدى" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "ئاتى" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "ئۆچۈرۈلدى" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "ئۆچۈر" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 23d2804c30..e9dddab50d 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ياردەم" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index c12dc78801..206c646ce7 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Передати" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Завантажити" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index ce817bd5a2..48733531cc 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -28,44 +28,10 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "виконати операцію відновлення" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Помилка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "видалити файл назавжди" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Видалити назавжди" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ім'я" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Видалено" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "відновлено" @@ -74,11 +40,19 @@ msgstr "відновлено" msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Ім'я" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Відновити" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Видалено" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Видалити" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index ef8068cc54..42346f31ac 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Тестове налаштування" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Допомога" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 0d12edb366..773c095675 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "پاسورڈ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3056d8fb95..3673a0eda0 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ایرر" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index d79a6ad3ff..6a4acc765b 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "مدد" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index f370ab63c6..bdf0ade051 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Mật khẩu" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Xác nhận" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Tải về" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 6abf104c6a..2f8df27304 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "Không thể óa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "thực hiện phục hồi" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Lỗi" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "xóa file vĩnh viễn" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Tên" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Đã xóa" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Không có gì ở đây. Thùng rác của bạn rỗng!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "Tên" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "Đã xóa" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "Xóa" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6bcd44e766..732d66664e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Giúp đỡ" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 5887baf02b..bcee07f59b 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "用户名或密码错误!请重试" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密码" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "提交" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此链接已失效" @@ -54,28 +54,28 @@ msgstr "共享已禁用" msgid "For more info, please ask the person who sent this link." msgstr "欲知详情,请联系发给你链接的人。" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下载" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index b4b860b976..47a77f55a4 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,40 +28,10 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "执行恢复操作" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "错误" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "彻底删除文件" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名称" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "已删除" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 文件夹" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n个文件" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已恢复" @@ -70,11 +40,19 @@ msgstr "已恢复" msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "名称" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "恢复" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "已删除" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index fc1b3807b3..d3df2b84ca 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "用户名-LDAP用户映射" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "清除用户-LDAP用户映射" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "清除组用户-LDAP级映射" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "测试配置" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "帮助" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 51163c90a9..bdb1f33a77 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index ad4303aa9e..a40b83f46b 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,40 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名稱" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "名稱" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 794b71762b..504c7ca378 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "幫助" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index c59207bb90..e9f5758538 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "請檢查您的密碼並再試一次" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送出" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此連結已經失效" @@ -54,28 +54,28 @@ msgstr "分享功能已停用" msgid "For more info, please ask the person who sent this link." msgstr "請詢問告訴您此連結的人以瞭解更多" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 645968ec0b..c5eb5e0a27 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,40 +28,10 @@ msgstr "無法永久刪除 %s" msgid "Couldn't restore %s" msgstr "無法還原 %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "進行還原動作" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "永久刪除檔案" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "永久刪除" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名稱" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "已刪除" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 個資料夾" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 個檔案" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已還原" @@ -70,11 +40,19 @@ msgstr "已還原" msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "名稱" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "還原" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "已刪除" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index c33ca06023..8f5867a1ca 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "測試此設定" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "說明" diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index bc298a3f33..cb990aed11 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -1,5 +1,7 @@ "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud.", +"No app name specified" => "O nome da aplicação não foi especificado", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -15,6 +17,11 @@ $TRANSLATIONS = array( "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador.", +"Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", +"App does not provide an info.xml file" => "A aplicação não disponibiliza um ficheiro info.xml", +"App can't be installed because of not allowed code in the App" => "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação", +"App directory already exists" => "A directoria da aplicação já existe", +"Can't create app folder. Please fix permissions. %s" => "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s", "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 01f48517ae..80288ed051 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -8,6 +8,9 @@ $TRANSLATIONS = array( "Users" => "Kullanıcılar", "Admin" => "Yönetici", "Failed to upgrade \"%s\"." => "\"%s\" yükseltme başarısız oldu.", +"Custom profile pictures don't work with encryption yet" => "Hala özel profil resminiz şifreleme ile çalışmıyor", +"Unknown filetype" => "Bilinmeyen dosya türü", +"Invalid image" => "Geçersiz resim", "web services under your control" => "Bilgileriniz güvenli ve şifreli", "cannot open \"%s\"" => "\"%s\" açılamıyor", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index abbc92709e..e84a6f573f 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Allow users to share items shared with them again", "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", +"Allow mail notification" => "Allow mail notification", +"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index ed23ecc077..be19819854 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por email", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por email de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 10a7d764bc..d506965be7 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux", "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", +"Allow mail notification" => "Autoriser les notifications par couriel", +"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 6cce72df4b..f1a91a345c 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -69,6 +69,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", +"Allow mail notification" => "Pozwól na mailowe powiadomienia", +"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index b664d2be3d..51182f01c8 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -16,6 +16,11 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s", "Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s", "Couldn't update app." => "Não foi possível actualizar a aplicação.", +"Wrong password" => "Password errada", +"No user supplied" => "Nenhum utilizador especificado.", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos", +"Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", +"Unable to change password" => "Não foi possível alterar a sua password", "Update to {appversion}" => "Actualizar para a versão {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -27,6 +32,7 @@ $TRANSLATIONS = array( "Error" => "Erro", "Update" => "Actualizar", "Updated" => "Actualizado", +"Select a profile picture" => "Seleccione uma fotografia de perfil", "Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.", "Saving..." => "A guardar...", "deleted" => "apagado", @@ -66,6 +72,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles", "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", +"Allow mail notification" => "Permitir notificação por email", +"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", @@ -101,7 +109,12 @@ $TRANSLATIONS = array( "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", "Profile picture" => "Foto do perfil", +"Upload new" => "Carregar novo", +"Select new from Files" => "Seleccionar novo a partir dos ficheiros", +"Remove image" => "Remover imagem", +"Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.", "Abort" => "Abortar", +"Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", From 7a1705d28eff8bfcf5921fe8dc181a05f6a5f5a7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Oct 2013 10:28:01 +0200 Subject: [PATCH 083/139] fix api tests --- apps/files_sharing/tests/api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 63df0dd7dc..32795d9d55 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -196,7 +196,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); - $params = array('itemSource' => $fileInfo['fileid']); + $params = array('itemSource' => $fileInfo['fileid'], + 'itemType' => 'file'); $result = Share\Api::getShare($params); From a0de5dd325fb9898a842733143fa36028cff1076 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Oct 2013 10:34:34 +0200 Subject: [PATCH 084/139] some small fixes --- apps/files_versions/lib/versions.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 7724221665..dae2de83b8 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -357,7 +357,7 @@ class Storage { array_push($dirs, $file['path']); } else { $versionsBegin = strrpos($file['path'], '.v'); - $relPathStart = strlen($versionsPath); + $relPathStart = strlen(self::VERSIONS_ROOT); $version = substr($file['path'], $versionsBegin + 2); $relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart); $key = $version . '#' . $relpath; @@ -371,7 +371,6 @@ class Storage { $result = array(); foreach ($versions as $key => $value) { - $i++; $size = $view->filesize($value['path']); $filename = $value['path']; From 69707747767a653f682c7db1d3f2d514d9a44e75 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Oct 2013 10:48:30 +0200 Subject: [PATCH 085/139] Fixed display name change for IE8 After saving the display name, the oldDisplayName field's value was wrongly set with text(), which would append the text inside the input element which is considered as an invalid operation in IE8. This fix for #5054 correctly puts the old value into the field with a val() call. --- settings/js/personal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 3fdc2907c4..e9a6d4d33f 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -31,7 +31,7 @@ function changeDisplayName(){ // Ajax foo $.post( 'ajax/changedisplayname.php', post, function(data){ if( data.status === "success" ){ - $('#oldDisplayName').text($('#displayName').val()); + $('#oldDisplayName').val($('#displayName').val()); // update displayName on the top right expand button $('#expandDisplayName').text($('#displayName').val()); updateAvatar(); From bced346c3b07fc6549f216f4db20c52e827d3cfa Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Oct 2013 12:36:30 +0200 Subject: [PATCH 086/139] Now using smaller spinner image for status indicator To make the status indicator appear smaller, even in IE8 that doesn't support background-size, there is no a smaller animated gif "loading-small" for that purpose. --- apps/files_external/css/settings.css | 3 --- apps/files_external/js/settings.js | 6 +++--- core/css/styles.css | 1 + core/img/loading-small.gif | Bin 0 -> 1294 bytes 4 files changed, 4 insertions(+), 6 deletions(-) create mode 100644 core/img/loading-small.gif diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 74b1402846..0ebae9d82b 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,9 +4,6 @@ td.status > span { width: 16px; vertical-align: text-bottom; } -span.loading{ - background-size: 16px 16px; -} span.success { background: #37ce02; border-radius: 8px; diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 3e92bc87e8..886c324e33 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1,7 +1,7 @@ (function(){ function updateStatus(statusEl, result){ - statusEl.removeClass('success error loading'); + statusEl.removeClass('success error loading-small'); if (result && result.status == 'success' && result.data.message) { statusEl.addClass('success'); return true; @@ -71,7 +71,7 @@ OC.MountConfig={ } users.push(applicable); } - statusSpan.addClass('loading').removeClass('error success'); + statusSpan.addClass('loading-small').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -124,7 +124,7 @@ OC.MountConfig={ var isPersonal = true; var mountType = 'user'; var applicable = OC.currentUser; - statusSpan.addClass('loading').removeClass('error success'); + statusSpan.addClass('loading-small').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { diff --git a/core/css/styles.css b/core/css/styles.css index be53b67c85..a0de21f3ac 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -745,6 +745,7 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin span.ui-icon {float: left; margin: 3px 7px 30px 0;} .loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; } +.loading-small { background: url('../img/loading-small.gif') no-repeat center; cursor: wait; } .move2trash { /* decrease spinner size */ width: 16px; height: 16px; diff --git a/core/img/loading-small.gif b/core/img/loading-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..5025f0bedebc9a7ae8bcfa10d4541e9fb1fe49ba GIT binary patch literal 1294 zcmZ?wbhEHb6krfwc+9}?|NnnuW8;e#FV2}W=g5&G>(;G{i;F8SFTa2P{>zsyPo6yK z<>h5&W(HIS0gC^*{aizWogD*Qjr0td85tND6o0aCaxw5T=m6P3Lj@QZSo}Vm{OPqY zg74%Em6=-_?k;XvxY0&+V#2YnI=8>8uvAH~O?t{Dq2=<2k^RK1i2^!aH4;ZAOscM( z5qR=s`(zG>2bygUoF_V~-+nB;$?nJ`4s2Eg0j=O#7$LTETFT564gc__hlx|T59M5O zusdeZ$XRH6#6U&zZjO;aOP{-}XQJVH5>~gv@&~QW|}Aftw}VT;4`0F%Lq|)Q@u1(^T>AG_JNBQAnNOIKzPL@Mh%$BCFV)8`XB&O7tIfy7}8n>b%C$QiKStQ_w5cRtxGLtro%gelBmJCEK6Xn2fe}y0 zCooI=jS?CPgxC%@2*!BLZu(ppVY8yyu}E>59h*nb!QWFwj_mA|6lTPhy!?r=rOz>i z#kwW7;L&6rF@-rP8!Zw9reA7fsFmUAcRa;nBywoIkwmU?@QFu0EZFP-C1DJos2VbF zuU(yK&@-Wwi>+DrLSOq~PV1I=1xAZScoeQ4Nr2fQk~D8(!3AT%SyLQ!R0U_On{2KM zPF;*>#R@dI_&hnz3q3CFf7HnRxrDPY^wK8VGlrFKD|NUhm2#a~#8A~(=g@qq;Eh1j o@lO85GZG^vA8hb&jPbEM;$sjs*Ma4}Ca+Pg+>=MVB8&{y0Cc3 Date: Fri, 11 Oct 2013 12:51:40 +0200 Subject: [PATCH 087/139] Fixed viewport layout using commas instead of semicolons Fixes #5285 --- core/templates/layout.base.php | 2 +- core/templates/layout.guest.php | 2 +- core/templates/layout.user.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 8caa9a0bbe..8cd237deea 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,7 +11,7 @@ getTitle()); ?> - + diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index cecd97ace2..47ca5903da 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -11,7 +11,7 @@ getTitle()); ?> - + diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 39cc43fc46..d30313a67c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -14,7 +14,7 @@ - + From a2445888e803bb62322aa83c1be239cbf0a8227c Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Fri, 11 Oct 2013 14:47:28 +0300 Subject: [PATCH 088/139] Show advanced section on error. Fixes #5191 --- core/templates/installation.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index 5a10376226..a6f55cb0e2 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -61,13 +61,13 @@

    - + 0): ?>
    t( 'Advanced' )); ?>
    - + 0): ?>
    @@ -78,7 +78,7 @@
    - + 0): ?>
    From 39b150921de06dceb06f45ba271ab97015f369c9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Oct 2013 14:10:00 +0200 Subject: [PATCH 089/139] Moved IE8 inline styles in files.css --- apps/files/css/files.css | 3 +++ apps/files/templates/index.php | 1 - apps/files_trashbin/templates/index.php | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index cbf34279f5..7c6778af62 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -178,6 +178,9 @@ table td.filename .nametext { table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } +.ie8 input[type="checkbox"]{ + padding: 0; +} /* File checkboxes */ #fileList tr td.filename>input[type="checkbox"]:first-child { diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 1c07d14ea8..32a59f1e1a 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,3 @@ -
    diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 17045313d6..15ba074e45 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,3 @@ -
    From 39d710e737da31111f62b44abf30b0be95246c99 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Oct 2013 14:20:46 +0200 Subject: [PATCH 090/139] block file access if share keys are missing --- apps/files_encryption/files/error.php | 25 ++++++++++++++----- apps/files_encryption/lib/crypt.php | 16 ++++++++---- apps/files_encryption/lib/helper.php | 18 ++++++++++--- apps/files_encryption/lib/stream.php | 12 ++++++--- .../templates/invalid_private_key.php | 2 +- 5 files changed, 54 insertions(+), 19 deletions(-) diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index ac0c026916..b59b7b8e67 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -5,12 +5,25 @@ if (!isset($_)) { //also provide standalone error page $l = OC_L10N::get('files_encryption'); - if (isset($_GET['i']) && $_GET['i'] === '0') { - $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.'); - $init = '0'; + if (isset($_GET['errorCode'])) { + $errorCode = $_GET['errorCode']; + switch ($errorCode) { + case \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR: + $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.'); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR: + $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND: + $errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); + break; + default: + $errorMsg = $l->t("Unknwon error please check your system settings or contact your administrator"); + break; + } } else { - $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'); - $init = '1'; + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + $errorMsg = $l->t("Unknwon error please check your system settings or contact your administrator"); } if (isset($_GET['p']) && $_GET['p'] === '1') { @@ -24,7 +37,7 @@ if (!isset($_)) { //also provide standalone error page header('HTTP/1.0 404 ' . $errorMsg); $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest'); $tmpl->assign('message', $errorMsg); - $tmpl->assign('init', $init); + $tmpl->assign('errorCode', $errorCode); $tmpl->printPage(); } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index c009718160..9155d238c7 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -33,6 +33,12 @@ require_once __DIR__ . '/../3rdparty/Crypt_Blowfish/Blowfish.php'; class Crypt { + const ENCRYPTION_UNKNOWN_ERROR = -1; + const ENCRYPTION_NOT_INITIALIZED_ERROR = 1; + const ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR = 2; + const ENCRYPTION_NO_SHARE_KEY_FOUND = 3; + + /** * @brief return encryption mode client or server side encryption * @param string $user name (use system wide setting if name=null) @@ -183,8 +189,8 @@ class Crypt { // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo($relPath, ''); - // If a file is flagged with encryption in DB, but isn't a - // valid content + IV combination, it's probably using the + // If a file is flagged with encryption in DB, but isn't a + // valid content + IV combination, it's probably using the // legacy encryption system if (isset($metadata['encrypted']) && $metadata['encrypted'] === true @@ -388,7 +394,7 @@ class Crypt { */ public static function multiKeyEncrypt($plainContent, array $publicKeys) { - // openssl_seal returns false without errors if $plainContent + // openssl_seal returns false without errors if $plainContent // is empty, so trigger our own error if (empty($plainContent)) { @@ -405,7 +411,7 @@ class Crypt { $i = 0; - // Ensure each shareKey is labelled with its + // Ensure each shareKey is labelled with its // corresponding userId foreach ($publicKeys as $userId => $publicKey) { @@ -476,7 +482,7 @@ class Crypt { } - // We encode the iv purely for string manipulation + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode($random); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index ebfc00157f..a754f9f28c 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -235,16 +235,28 @@ class Helper { /** * @brief redirect to a error page */ - public static function redirectToErrorPage($session) { + public static function redirectToErrorPage($session, $errorCode = null) { - $init = $session->getInitialized(); + if ($errorCode === null) { + $init = $session->getInitialized(); + switch ($init) { + case \OCA\Encryption\Session::INIT_EXECUTED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR; + break; + case \OCA\Encryption\Session::NOT_INITIALIZED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR; + break; + default: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + } + } $location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php'); $post = 0; if(count($_POST) > 0) { $post = 1; } - header('Location: ' . $location . '?p=' . $post . '&i=' . $init); + header('Location: ' . $location . '?p=' . $post . '&errorCode=' . $errorCode); exit(); } diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index b25ba7bb67..5ce5caf80c 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -254,16 +254,20 @@ class Stream { // If a keyfile already exists if ($this->encKeyfile) { + $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); + // if there is no valid private key return false if ($this->privateKey === false) { - // if private key is not valid redirect user to a error page - \OCA\Encryption\Helper::redirectToErrorPage(); - + \OCA\Encryption\Helper::redirectToErrorPage($this->session); return false; } - $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); + if ($shareKey === false) { + // if no share key is available redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage($this->session, \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND); + return false; + } $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey); diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php index 9af65f831b..a3cae60b1d 100644 --- a/apps/files_encryption/templates/invalid_private_key.php +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -4,7 +4,7 @@
    - + p($l->t('Go directly to your ')); ?> t('personal settings')); ?>.
    From 2b2a5486104a2de937c32024b320bc416d78b725 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Oct 2013 14:23:37 +0200 Subject: [PATCH 091/139] Fixed IE8 misaligned date Removed display: block to let the element be displayed inline and let itself aligned by vertical-align: middle of the parent This works in IE8 and other browsers. Fixes #5288 --- apps/files/css/files.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index cbf34279f5..a0a3ec26ce 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -105,8 +105,6 @@ table th#headerDate, table td.date { box-sizing: border-box; position: relative; min-width: 11em; - display: block; - height: 51px; } /* Multiselect bar */ @@ -161,8 +159,6 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0 } .modified { position: relative; - top: 11px; - left: 5px; } /* TODO fix usability bug (accidental file/folder selection) */ From e27bb660bd5f205f912d141aa83dbeeacf2b7555 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Fri, 11 Oct 2013 18:03:53 +0530 Subject: [PATCH 092/139] Uniform Styles and Indentation Fixes for Personal Block --- settings/js/personal.js | 1 - settings/templates/personal.php | 30 ++++++++++++++++++++---------- 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index e9a6d4d33f..e3a5318119 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -171,7 +171,6 @@ $(document).ready(function(){ } }); - $("#languageinput").chosen(); // Show only the not selectable optgroup // Choosen only shows optgroup-labels if there are options in the optgroup $(".languagedivider").hide(); diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 47227d6ea0..d10413dac3 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -104,19 +104,29 @@ if($_['passwordChangeSupported']) {

    t('Language'));?>

    - + + + + + + + + + + t('Help translate'));?> + target="_blank"> + t('Help translate'));?> +
    From 4b2bb117168baf24ad14b8e27fa78200db223c5a Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Fri, 11 Oct 2013 18:42:02 +0530 Subject: [PATCH 093/139] Removes the Bogus Label --- settings/templates/personal.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d10413dac3..854cc93b4f 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -113,9 +113,6 @@ if($_['passwordChangeSupported']) { - - - + - +